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
package/dist/vuetify.d.ts
CHANGED
|
@@ -968,6 +968,7 @@ declare const VToolbar: {
|
|
|
968
968
|
style: vue.StyleValue;
|
|
969
969
|
tag: string;
|
|
970
970
|
collapse: boolean;
|
|
971
|
+
tile: boolean;
|
|
971
972
|
density: Density$1;
|
|
972
973
|
extended: boolean;
|
|
973
974
|
extensionHeight: string | number;
|
|
@@ -1015,6 +1016,7 @@ declare const VToolbar: {
|
|
|
1015
1016
|
style: vue.StyleValue;
|
|
1016
1017
|
tag: string;
|
|
1017
1018
|
collapse: boolean;
|
|
1019
|
+
tile: boolean;
|
|
1018
1020
|
density: Density$1;
|
|
1019
1021
|
extended: boolean;
|
|
1020
1022
|
extensionHeight: string | number;
|
|
@@ -1060,6 +1062,7 @@ declare const VToolbar: {
|
|
|
1060
1062
|
tag: string;
|
|
1061
1063
|
collapse: boolean;
|
|
1062
1064
|
rounded: string | number | boolean;
|
|
1065
|
+
tile: boolean;
|
|
1063
1066
|
density: Density$1;
|
|
1064
1067
|
extended: boolean;
|
|
1065
1068
|
extensionHeight: string | number;
|
|
@@ -1097,6 +1100,7 @@ declare const VToolbar: {
|
|
|
1097
1100
|
style: vue.StyleValue;
|
|
1098
1101
|
tag: string;
|
|
1099
1102
|
collapse: boolean;
|
|
1103
|
+
tile: boolean;
|
|
1100
1104
|
density: Density$1;
|
|
1101
1105
|
extended: boolean;
|
|
1102
1106
|
extensionHeight: string | number;
|
|
@@ -1145,6 +1149,7 @@ declare const VToolbar: {
|
|
|
1145
1149
|
tag: string;
|
|
1146
1150
|
collapse: boolean;
|
|
1147
1151
|
rounded: string | number | boolean;
|
|
1152
|
+
tile: boolean;
|
|
1148
1153
|
density: Density$1;
|
|
1149
1154
|
extended: boolean;
|
|
1150
1155
|
extensionHeight: string | number;
|
|
@@ -1160,6 +1165,7 @@ declare const VToolbar: {
|
|
|
1160
1165
|
style: vue.StyleValue;
|
|
1161
1166
|
tag: string;
|
|
1162
1167
|
collapse: boolean;
|
|
1168
|
+
tile: boolean;
|
|
1163
1169
|
density: Density$1;
|
|
1164
1170
|
extended: boolean;
|
|
1165
1171
|
extensionHeight: string | number;
|
|
@@ -1208,6 +1214,7 @@ declare const VToolbar: {
|
|
|
1208
1214
|
tag: string;
|
|
1209
1215
|
collapse: boolean;
|
|
1210
1216
|
rounded: string | number | boolean;
|
|
1217
|
+
tile: boolean;
|
|
1211
1218
|
density: Density$1;
|
|
1212
1219
|
extended: boolean;
|
|
1213
1220
|
extensionHeight: string | number;
|
|
@@ -1244,6 +1251,7 @@ declare const VToolbar: {
|
|
|
1244
1251
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
1245
1252
|
default: undefined;
|
|
1246
1253
|
};
|
|
1254
|
+
tile: BooleanConstructor;
|
|
1247
1255
|
elevation: {
|
|
1248
1256
|
type: (StringConstructor | NumberConstructor)[];
|
|
1249
1257
|
validator(v: any): boolean;
|
|
@@ -1288,6 +1296,7 @@ declare const VToolbar: {
|
|
|
1288
1296
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
1289
1297
|
default: undefined;
|
|
1290
1298
|
};
|
|
1299
|
+
tile: BooleanConstructor;
|
|
1291
1300
|
elevation: {
|
|
1292
1301
|
type: (StringConstructor | NumberConstructor)[];
|
|
1293
1302
|
validator(v: any): boolean;
|
|
@@ -1332,6 +1341,7 @@ declare const VAppBar: {
|
|
|
1332
1341
|
style: vue.StyleValue;
|
|
1333
1342
|
tag: string;
|
|
1334
1343
|
collapse: boolean;
|
|
1344
|
+
tile: boolean;
|
|
1335
1345
|
density: Density$1;
|
|
1336
1346
|
extended: boolean;
|
|
1337
1347
|
extensionHeight: string | number;
|
|
@@ -1387,6 +1397,7 @@ declare const VAppBar: {
|
|
|
1387
1397
|
style: vue.StyleValue;
|
|
1388
1398
|
tag: string;
|
|
1389
1399
|
collapse: boolean;
|
|
1400
|
+
tile: boolean;
|
|
1390
1401
|
density: Density$1;
|
|
1391
1402
|
extended: boolean;
|
|
1392
1403
|
extensionHeight: string | number;
|
|
@@ -1441,6 +1452,7 @@ declare const VAppBar: {
|
|
|
1441
1452
|
tag: string;
|
|
1442
1453
|
collapse: boolean;
|
|
1443
1454
|
rounded: string | number | boolean;
|
|
1455
|
+
tile: boolean;
|
|
1444
1456
|
density: Density$1;
|
|
1445
1457
|
extended: boolean;
|
|
1446
1458
|
extensionHeight: string | number;
|
|
@@ -1482,6 +1494,7 @@ declare const VAppBar: {
|
|
|
1482
1494
|
style: vue.StyleValue;
|
|
1483
1495
|
tag: string;
|
|
1484
1496
|
collapse: boolean;
|
|
1497
|
+
tile: boolean;
|
|
1485
1498
|
density: Density$1;
|
|
1486
1499
|
extended: boolean;
|
|
1487
1500
|
extensionHeight: string | number;
|
|
@@ -1536,6 +1549,7 @@ declare const VAppBar: {
|
|
|
1536
1549
|
tag: string;
|
|
1537
1550
|
collapse: boolean;
|
|
1538
1551
|
rounded: string | number | boolean;
|
|
1552
|
+
tile: boolean;
|
|
1539
1553
|
density: Density$1;
|
|
1540
1554
|
extended: boolean;
|
|
1541
1555
|
extensionHeight: string | number;
|
|
@@ -1555,6 +1569,7 @@ declare const VAppBar: {
|
|
|
1555
1569
|
style: vue.StyleValue;
|
|
1556
1570
|
tag: string;
|
|
1557
1571
|
collapse: boolean;
|
|
1572
|
+
tile: boolean;
|
|
1558
1573
|
density: Density$1;
|
|
1559
1574
|
extended: boolean;
|
|
1560
1575
|
extensionHeight: string | number;
|
|
@@ -1611,6 +1626,7 @@ declare const VAppBar: {
|
|
|
1611
1626
|
tag: string;
|
|
1612
1627
|
collapse: boolean;
|
|
1613
1628
|
rounded: string | number | boolean;
|
|
1629
|
+
tile: boolean;
|
|
1614
1630
|
density: Density$1;
|
|
1615
1631
|
extended: boolean;
|
|
1616
1632
|
extensionHeight: string | number;
|
|
@@ -1668,6 +1684,7 @@ declare const VAppBar: {
|
|
|
1668
1684
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
1669
1685
|
default: undefined;
|
|
1670
1686
|
};
|
|
1687
|
+
tile: BooleanConstructor;
|
|
1671
1688
|
elevation: {
|
|
1672
1689
|
type: (StringConstructor | NumberConstructor)[];
|
|
1673
1690
|
validator(v: any): boolean;
|
|
@@ -1736,6 +1753,7 @@ declare const VAppBar: {
|
|
|
1736
1753
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
1737
1754
|
default: undefined;
|
|
1738
1755
|
};
|
|
1756
|
+
tile: BooleanConstructor;
|
|
1739
1757
|
elevation: {
|
|
1740
1758
|
type: (StringConstructor | NumberConstructor)[];
|
|
1741
1759
|
validator(v: any): boolean;
|
|
@@ -1823,6 +1841,7 @@ declare const VAppBarNavIcon: {
|
|
|
1823
1841
|
size: string | number;
|
|
1824
1842
|
tag: string;
|
|
1825
1843
|
icon: NonNullable<boolean | IconValue>;
|
|
1844
|
+
tile: boolean;
|
|
1826
1845
|
density: Density;
|
|
1827
1846
|
slim: boolean;
|
|
1828
1847
|
stacked: boolean;
|
|
@@ -1883,6 +1902,7 @@ declare const VAppBarNavIcon: {
|
|
|
1883
1902
|
size: string | number;
|
|
1884
1903
|
tag: string;
|
|
1885
1904
|
icon: NonNullable<boolean | IconValue>;
|
|
1905
|
+
tile: boolean;
|
|
1886
1906
|
density: Density;
|
|
1887
1907
|
slim: boolean;
|
|
1888
1908
|
stacked: boolean;
|
|
@@ -1945,6 +1965,7 @@ declare const VAppBarNavIcon: {
|
|
|
1945
1965
|
tag: string;
|
|
1946
1966
|
icon: NonNullable<boolean | IconValue>;
|
|
1947
1967
|
rounded: string | number | boolean;
|
|
1968
|
+
tile: boolean;
|
|
1948
1969
|
density: Density;
|
|
1949
1970
|
slim: boolean;
|
|
1950
1971
|
stacked: boolean;
|
|
@@ -1983,6 +2004,7 @@ declare const VAppBarNavIcon: {
|
|
|
1983
2004
|
size: string | number;
|
|
1984
2005
|
tag: string;
|
|
1985
2006
|
icon: NonNullable<boolean | IconValue>;
|
|
2007
|
+
tile: boolean;
|
|
1986
2008
|
density: Density;
|
|
1987
2009
|
slim: boolean;
|
|
1988
2010
|
stacked: boolean;
|
|
@@ -2045,6 +2067,7 @@ declare const VAppBarNavIcon: {
|
|
|
2045
2067
|
tag: string;
|
|
2046
2068
|
icon: NonNullable<boolean | IconValue>;
|
|
2047
2069
|
rounded: string | number | boolean;
|
|
2070
|
+
tile: boolean;
|
|
2048
2071
|
density: Density;
|
|
2049
2072
|
slim: boolean;
|
|
2050
2073
|
stacked: boolean;
|
|
@@ -2067,6 +2090,7 @@ declare const VAppBarNavIcon: {
|
|
|
2067
2090
|
size: string | number;
|
|
2068
2091
|
tag: string;
|
|
2069
2092
|
icon: NonNullable<boolean | IconValue>;
|
|
2093
|
+
tile: boolean;
|
|
2070
2094
|
density: Density;
|
|
2071
2095
|
slim: boolean;
|
|
2072
2096
|
stacked: boolean;
|
|
@@ -2129,6 +2153,7 @@ declare const VAppBarNavIcon: {
|
|
|
2129
2153
|
tag: string;
|
|
2130
2154
|
icon: NonNullable<boolean | IconValue>;
|
|
2131
2155
|
rounded: string | number | boolean;
|
|
2156
|
+
tile: boolean;
|
|
2132
2157
|
density: Density;
|
|
2133
2158
|
slim: boolean;
|
|
2134
2159
|
stacked: boolean;
|
|
@@ -2181,6 +2206,7 @@ declare const VAppBarNavIcon: {
|
|
|
2181
2206
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
2182
2207
|
default: undefined;
|
|
2183
2208
|
};
|
|
2209
|
+
tile: BooleanConstructor;
|
|
2184
2210
|
position: {
|
|
2185
2211
|
type: vue.PropType<"fixed" | "absolute" | "static" | "sticky" | "relative">;
|
|
2186
2212
|
validator: (v: any) => boolean;
|
|
@@ -2269,6 +2295,7 @@ declare const VAppBarNavIcon: {
|
|
|
2269
2295
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
2270
2296
|
default: undefined;
|
|
2271
2297
|
};
|
|
2298
|
+
tile: BooleanConstructor;
|
|
2272
2299
|
position: {
|
|
2273
2300
|
type: vue.PropType<"fixed" | "absolute" | "static" | "sticky" | "relative">;
|
|
2274
2301
|
validator: (v: any) => boolean;
|
|
@@ -2467,6 +2494,7 @@ declare const VAlert: {
|
|
|
2467
2494
|
style: vue.StyleValue;
|
|
2468
2495
|
tag: string;
|
|
2469
2496
|
icon: false | IconValue;
|
|
2497
|
+
tile: boolean;
|
|
2470
2498
|
prominent: boolean;
|
|
2471
2499
|
density: Density;
|
|
2472
2500
|
modelValue: boolean;
|
|
@@ -2533,6 +2561,7 @@ declare const VAlert: {
|
|
|
2533
2561
|
style: vue.StyleValue;
|
|
2534
2562
|
tag: string;
|
|
2535
2563
|
icon: false | IconValue;
|
|
2564
|
+
tile: boolean;
|
|
2536
2565
|
prominent: boolean;
|
|
2537
2566
|
density: Density;
|
|
2538
2567
|
modelValue: boolean;
|
|
@@ -2597,6 +2626,7 @@ declare const VAlert: {
|
|
|
2597
2626
|
tag: string;
|
|
2598
2627
|
icon: false | IconValue;
|
|
2599
2628
|
rounded: string | number | boolean;
|
|
2629
|
+
tile: boolean;
|
|
2600
2630
|
prominent: boolean;
|
|
2601
2631
|
density: Density;
|
|
2602
2632
|
modelValue: boolean;
|
|
@@ -2636,6 +2666,7 @@ declare const VAlert: {
|
|
|
2636
2666
|
style: vue.StyleValue;
|
|
2637
2667
|
tag: string;
|
|
2638
2668
|
icon: false | IconValue;
|
|
2669
|
+
tile: boolean;
|
|
2639
2670
|
prominent: boolean;
|
|
2640
2671
|
density: Density;
|
|
2641
2672
|
modelValue: boolean;
|
|
@@ -2700,6 +2731,7 @@ declare const VAlert: {
|
|
|
2700
2731
|
tag: string;
|
|
2701
2732
|
icon: false | IconValue;
|
|
2702
2733
|
rounded: string | number | boolean;
|
|
2734
|
+
tile: boolean;
|
|
2703
2735
|
prominent: boolean;
|
|
2704
2736
|
density: Density;
|
|
2705
2737
|
modelValue: boolean;
|
|
@@ -2715,6 +2747,7 @@ declare const VAlert: {
|
|
|
2715
2747
|
style: vue.StyleValue;
|
|
2716
2748
|
tag: string;
|
|
2717
2749
|
icon: false | IconValue;
|
|
2750
|
+
tile: boolean;
|
|
2718
2751
|
prominent: boolean;
|
|
2719
2752
|
density: Density;
|
|
2720
2753
|
modelValue: boolean;
|
|
@@ -2782,6 +2815,7 @@ declare const VAlert: {
|
|
|
2782
2815
|
tag: string;
|
|
2783
2816
|
icon: false | IconValue;
|
|
2784
2817
|
rounded: string | number | boolean;
|
|
2818
|
+
tile: boolean;
|
|
2785
2819
|
prominent: boolean;
|
|
2786
2820
|
density: Density;
|
|
2787
2821
|
modelValue: boolean;
|
|
@@ -2828,6 +2862,7 @@ declare const VAlert: {
|
|
|
2828
2862
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
2829
2863
|
default: undefined;
|
|
2830
2864
|
};
|
|
2865
|
+
tile: BooleanConstructor;
|
|
2831
2866
|
position: {
|
|
2832
2867
|
type: PropType<"fixed" | "absolute" | "static" | "sticky" | "relative">;
|
|
2833
2868
|
validator: (v: any) => boolean;
|
|
@@ -2901,6 +2936,7 @@ declare const VAlert: {
|
|
|
2901
2936
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
2902
2937
|
default: undefined;
|
|
2903
2938
|
};
|
|
2939
|
+
tile: BooleanConstructor;
|
|
2904
2940
|
position: {
|
|
2905
2941
|
type: PropType<"fixed" | "absolute" | "static" | "sticky" | "relative">;
|
|
2906
2942
|
validator: (v: any) => boolean;
|
|
@@ -3107,6 +3143,7 @@ declare const VField: {
|
|
|
3107
3143
|
active: boolean;
|
|
3108
3144
|
style: vue.StyleValue;
|
|
3109
3145
|
disabled: boolean;
|
|
3146
|
+
tile: boolean;
|
|
3110
3147
|
clearIcon: IconValue;
|
|
3111
3148
|
focused: boolean;
|
|
3112
3149
|
clearable: boolean;
|
|
@@ -3145,6 +3182,7 @@ declare const VField: {
|
|
|
3145
3182
|
active: boolean;
|
|
3146
3183
|
style: vue.StyleValue;
|
|
3147
3184
|
disabled: boolean;
|
|
3185
|
+
tile: boolean;
|
|
3148
3186
|
clearIcon: IconValue;
|
|
3149
3187
|
focused: boolean;
|
|
3150
3188
|
clearable: boolean;
|
|
@@ -3179,6 +3217,7 @@ declare const VField: {
|
|
|
3179
3217
|
style: vue.StyleValue;
|
|
3180
3218
|
disabled: boolean;
|
|
3181
3219
|
rounded: string | number | boolean;
|
|
3220
|
+
tile: boolean;
|
|
3182
3221
|
clearIcon: IconValue;
|
|
3183
3222
|
focused: boolean;
|
|
3184
3223
|
centerAffix: boolean;
|
|
@@ -3223,6 +3262,7 @@ declare const VField: {
|
|
|
3223
3262
|
active: boolean;
|
|
3224
3263
|
style: vue.StyleValue;
|
|
3225
3264
|
disabled: boolean;
|
|
3265
|
+
tile: boolean;
|
|
3226
3266
|
clearIcon: IconValue;
|
|
3227
3267
|
focused: boolean;
|
|
3228
3268
|
clearable: boolean;
|
|
@@ -3259,6 +3299,7 @@ declare const VField: {
|
|
|
3259
3299
|
style: vue.StyleValue;
|
|
3260
3300
|
disabled: boolean;
|
|
3261
3301
|
rounded: string | number | boolean;
|
|
3302
|
+
tile: boolean;
|
|
3262
3303
|
clearIcon: IconValue;
|
|
3263
3304
|
focused: boolean;
|
|
3264
3305
|
centerAffix: boolean;
|
|
@@ -3278,6 +3319,7 @@ declare const VField: {
|
|
|
3278
3319
|
active: boolean;
|
|
3279
3320
|
style: vue.StyleValue;
|
|
3280
3321
|
disabled: boolean;
|
|
3322
|
+
tile: boolean;
|
|
3281
3323
|
clearIcon: IconValue;
|
|
3282
3324
|
focused: boolean;
|
|
3283
3325
|
clearable: boolean;
|
|
@@ -3317,6 +3359,7 @@ declare const VField: {
|
|
|
3317
3359
|
style: vue.StyleValue;
|
|
3318
3360
|
disabled: boolean;
|
|
3319
3361
|
rounded: string | number | boolean;
|
|
3362
|
+
tile: boolean;
|
|
3320
3363
|
clearIcon: IconValue;
|
|
3321
3364
|
focused: boolean;
|
|
3322
3365
|
centerAffix: boolean;
|
|
@@ -3358,6 +3401,7 @@ declare const VField: {
|
|
|
3358
3401
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
3359
3402
|
default: undefined;
|
|
3360
3403
|
};
|
|
3404
|
+
tile: BooleanConstructor;
|
|
3361
3405
|
loading: (StringConstructor | BooleanConstructor)[];
|
|
3362
3406
|
class: PropType<any>;
|
|
3363
3407
|
style: {
|
|
@@ -3407,6 +3451,7 @@ declare const VField: {
|
|
|
3407
3451
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
3408
3452
|
default: undefined;
|
|
3409
3453
|
};
|
|
3454
|
+
tile: BooleanConstructor;
|
|
3410
3455
|
loading: (StringConstructor | BooleanConstructor)[];
|
|
3411
3456
|
class: PropType<any>;
|
|
3412
3457
|
style: {
|
|
@@ -4150,6 +4195,7 @@ declare const VListItem: {
|
|
|
4150
4195
|
style: vue.StyleValue;
|
|
4151
4196
|
disabled: boolean;
|
|
4152
4197
|
tag: string;
|
|
4198
|
+
tile: boolean;
|
|
4153
4199
|
density: Density;
|
|
4154
4200
|
slim: boolean;
|
|
4155
4201
|
ripple: boolean | {
|
|
@@ -4218,6 +4264,7 @@ declare const VListItem: {
|
|
|
4218
4264
|
style: vue.StyleValue;
|
|
4219
4265
|
disabled: boolean;
|
|
4220
4266
|
tag: string;
|
|
4267
|
+
tile: boolean;
|
|
4221
4268
|
density: Density;
|
|
4222
4269
|
slim: boolean;
|
|
4223
4270
|
ripple: boolean | {
|
|
@@ -4287,6 +4334,7 @@ declare const VListItem: {
|
|
|
4287
4334
|
disabled: boolean;
|
|
4288
4335
|
tag: string;
|
|
4289
4336
|
rounded: string | number | boolean;
|
|
4337
|
+
tile: boolean;
|
|
4290
4338
|
density: Density;
|
|
4291
4339
|
slim: boolean;
|
|
4292
4340
|
ripple: boolean | {
|
|
@@ -4323,6 +4371,7 @@ declare const VListItem: {
|
|
|
4323
4371
|
style: vue.StyleValue;
|
|
4324
4372
|
disabled: boolean;
|
|
4325
4373
|
tag: string;
|
|
4374
|
+
tile: boolean;
|
|
4326
4375
|
density: Density;
|
|
4327
4376
|
slim: boolean;
|
|
4328
4377
|
ripple: boolean | {
|
|
@@ -4392,6 +4441,7 @@ declare const VListItem: {
|
|
|
4392
4441
|
disabled: boolean;
|
|
4393
4442
|
tag: string;
|
|
4394
4443
|
rounded: string | number | boolean;
|
|
4444
|
+
tile: boolean;
|
|
4395
4445
|
density: Density;
|
|
4396
4446
|
slim: boolean;
|
|
4397
4447
|
ripple: boolean | {
|
|
@@ -4409,6 +4459,7 @@ declare const VListItem: {
|
|
|
4409
4459
|
style: vue.StyleValue;
|
|
4410
4460
|
disabled: boolean;
|
|
4411
4461
|
tag: string;
|
|
4462
|
+
tile: boolean;
|
|
4412
4463
|
density: Density;
|
|
4413
4464
|
slim: boolean;
|
|
4414
4465
|
ripple: boolean | {
|
|
@@ -4480,6 +4531,7 @@ declare const VListItem: {
|
|
|
4480
4531
|
disabled: boolean;
|
|
4481
4532
|
tag: string;
|
|
4482
4533
|
rounded: string | number | boolean;
|
|
4534
|
+
tile: boolean;
|
|
4483
4535
|
density: Density;
|
|
4484
4536
|
slim: boolean;
|
|
4485
4537
|
ripple: boolean | {
|
|
@@ -4524,6 +4576,7 @@ declare const VListItem: {
|
|
|
4524
4576
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
4525
4577
|
default: undefined;
|
|
4526
4578
|
};
|
|
4579
|
+
tile: BooleanConstructor;
|
|
4527
4580
|
elevation: {
|
|
4528
4581
|
type: (StringConstructor | NumberConstructor)[];
|
|
4529
4582
|
validator(v: any): boolean;
|
|
@@ -4598,6 +4651,7 @@ declare const VListItem: {
|
|
|
4598
4651
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
4599
4652
|
default: undefined;
|
|
4600
4653
|
};
|
|
4654
|
+
tile: BooleanConstructor;
|
|
4601
4655
|
elevation: {
|
|
4602
4656
|
type: (StringConstructor | NumberConstructor)[];
|
|
4603
4657
|
validator(v: any): boolean;
|
|
@@ -4721,6 +4775,7 @@ declare const VAutocomplete: {
|
|
|
4721
4775
|
readonly: boolean | null;
|
|
4722
4776
|
noDataText: string;
|
|
4723
4777
|
messages: string | readonly string[];
|
|
4778
|
+
tile: boolean;
|
|
4724
4779
|
density: Density;
|
|
4725
4780
|
valueComparator: typeof deepEqual;
|
|
4726
4781
|
clearIcon: IconValue;
|
|
@@ -4789,6 +4844,7 @@ declare const VAutocomplete: {
|
|
|
4789
4844
|
tag: string;
|
|
4790
4845
|
mandatory: boolean;
|
|
4791
4846
|
rounded: string | number | boolean;
|
|
4847
|
+
tile: boolean;
|
|
4792
4848
|
density: Density;
|
|
4793
4849
|
slim: boolean;
|
|
4794
4850
|
valueComparator: typeof deepEqual;
|
|
@@ -4804,6 +4860,7 @@ declare const VAutocomplete: {
|
|
|
4804
4860
|
disabled: boolean;
|
|
4805
4861
|
tag: string;
|
|
4806
4862
|
mandatory: boolean;
|
|
4863
|
+
tile: boolean;
|
|
4807
4864
|
density: Density;
|
|
4808
4865
|
slim: boolean;
|
|
4809
4866
|
valueComparator: typeof deepEqual;
|
|
@@ -4847,6 +4904,7 @@ declare const VAutocomplete: {
|
|
|
4847
4904
|
disabled: boolean;
|
|
4848
4905
|
tag: string;
|
|
4849
4906
|
mandatory: boolean;
|
|
4907
|
+
tile: boolean;
|
|
4850
4908
|
density: Density;
|
|
4851
4909
|
slim: boolean;
|
|
4852
4910
|
valueComparator: typeof deepEqual;
|
|
@@ -4885,7 +4943,7 @@ declare const VAutocomplete: {
|
|
|
4885
4943
|
value: boolean;
|
|
4886
4944
|
path: unknown[];
|
|
4887
4945
|
}) => any) | undefined;
|
|
4888
|
-
}, "variant" | "nav" | "style" | "disabled" | "tag" | "mandatory" | "rounded" | "density" | "slim" | "valueComparator" | "selectStrategy" | "openStrategy" | "lines" | "returnObject" | "itemType"> & {
|
|
4946
|
+
}, "variant" | "nav" | "style" | "disabled" | "tag" | "mandatory" | "rounded" | "tile" | "density" | "slim" | "valueComparator" | "selectStrategy" | "openStrategy" | "lines" | "returnObject" | "itemType"> & {
|
|
4889
4947
|
items?: readonly any[] | undefined;
|
|
4890
4948
|
itemTitle?: SelectItemKey<any>;
|
|
4891
4949
|
itemValue?: SelectItemKey<any>;
|
|
@@ -5266,6 +5324,7 @@ declare const VAutocomplete: {
|
|
|
5266
5324
|
readonly: boolean | null;
|
|
5267
5325
|
noDataText: string;
|
|
5268
5326
|
messages: string | readonly string[];
|
|
5327
|
+
tile: boolean;
|
|
5269
5328
|
density: Density;
|
|
5270
5329
|
valueComparator: typeof deepEqual;
|
|
5271
5330
|
clearIcon: IconValue;
|
|
@@ -5334,6 +5393,7 @@ declare const VAutocomplete: {
|
|
|
5334
5393
|
tag: string;
|
|
5335
5394
|
mandatory: boolean;
|
|
5336
5395
|
rounded: string | number | boolean;
|
|
5396
|
+
tile: boolean;
|
|
5337
5397
|
density: Density;
|
|
5338
5398
|
slim: boolean;
|
|
5339
5399
|
valueComparator: typeof deepEqual;
|
|
@@ -5349,6 +5409,7 @@ declare const VAutocomplete: {
|
|
|
5349
5409
|
disabled: boolean;
|
|
5350
5410
|
tag: string;
|
|
5351
5411
|
mandatory: boolean;
|
|
5412
|
+
tile: boolean;
|
|
5352
5413
|
density: Density;
|
|
5353
5414
|
slim: boolean;
|
|
5354
5415
|
valueComparator: typeof deepEqual;
|
|
@@ -5392,6 +5453,7 @@ declare const VAutocomplete: {
|
|
|
5392
5453
|
disabled: boolean;
|
|
5393
5454
|
tag: string;
|
|
5394
5455
|
mandatory: boolean;
|
|
5456
|
+
tile: boolean;
|
|
5395
5457
|
density: Density;
|
|
5396
5458
|
slim: boolean;
|
|
5397
5459
|
valueComparator: typeof deepEqual;
|
|
@@ -5430,7 +5492,7 @@ declare const VAutocomplete: {
|
|
|
5430
5492
|
value: boolean;
|
|
5431
5493
|
path: unknown[];
|
|
5432
5494
|
}) => any) | undefined;
|
|
5433
|
-
}, "variant" | "nav" | "style" | "disabled" | "tag" | "mandatory" | "rounded" | "density" | "slim" | "valueComparator" | "selectStrategy" | "openStrategy" | "lines" | "returnObject" | "itemType"> & {
|
|
5495
|
+
}, "variant" | "nav" | "style" | "disabled" | "tag" | "mandatory" | "rounded" | "tile" | "density" | "slim" | "valueComparator" | "selectStrategy" | "openStrategy" | "lines" | "returnObject" | "itemType"> & {
|
|
5434
5496
|
items?: readonly any[] | undefined;
|
|
5435
5497
|
itemTitle?: SelectItemKey<any>;
|
|
5436
5498
|
itemValue?: SelectItemKey<any>;
|
|
@@ -5807,6 +5869,7 @@ declare const VAutocomplete: {
|
|
|
5807
5869
|
noDataText: string;
|
|
5808
5870
|
messages: string | readonly string[];
|
|
5809
5871
|
rounded: string | number | boolean;
|
|
5872
|
+
tile: boolean;
|
|
5810
5873
|
density: Density;
|
|
5811
5874
|
valueComparator: typeof deepEqual;
|
|
5812
5875
|
clearIcon: IconValue;
|
|
@@ -5922,6 +5985,7 @@ declare const VAutocomplete: {
|
|
|
5922
5985
|
readonly: boolean | null;
|
|
5923
5986
|
noDataText: string;
|
|
5924
5987
|
messages: string | readonly string[];
|
|
5988
|
+
tile: boolean;
|
|
5925
5989
|
density: Density;
|
|
5926
5990
|
valueComparator: typeof deepEqual;
|
|
5927
5991
|
clearIcon: IconValue;
|
|
@@ -5990,6 +6054,7 @@ declare const VAutocomplete: {
|
|
|
5990
6054
|
tag: string;
|
|
5991
6055
|
mandatory: boolean;
|
|
5992
6056
|
rounded: string | number | boolean;
|
|
6057
|
+
tile: boolean;
|
|
5993
6058
|
density: Density;
|
|
5994
6059
|
slim: boolean;
|
|
5995
6060
|
valueComparator: typeof deepEqual;
|
|
@@ -6005,6 +6070,7 @@ declare const VAutocomplete: {
|
|
|
6005
6070
|
disabled: boolean;
|
|
6006
6071
|
tag: string;
|
|
6007
6072
|
mandatory: boolean;
|
|
6073
|
+
tile: boolean;
|
|
6008
6074
|
density: Density;
|
|
6009
6075
|
slim: boolean;
|
|
6010
6076
|
valueComparator: typeof deepEqual;
|
|
@@ -6048,6 +6114,7 @@ declare const VAutocomplete: {
|
|
|
6048
6114
|
disabled: boolean;
|
|
6049
6115
|
tag: string;
|
|
6050
6116
|
mandatory: boolean;
|
|
6117
|
+
tile: boolean;
|
|
6051
6118
|
density: Density;
|
|
6052
6119
|
slim: boolean;
|
|
6053
6120
|
valueComparator: typeof deepEqual;
|
|
@@ -6086,7 +6153,7 @@ declare const VAutocomplete: {
|
|
|
6086
6153
|
value: boolean;
|
|
6087
6154
|
path: unknown[];
|
|
6088
6155
|
}) => any) | undefined;
|
|
6089
|
-
}, "variant" | "nav" | "style" | "disabled" | "tag" | "mandatory" | "rounded" | "density" | "slim" | "valueComparator" | "selectStrategy" | "openStrategy" | "lines" | "returnObject" | "itemType"> & {
|
|
6156
|
+
}, "variant" | "nav" | "style" | "disabled" | "tag" | "mandatory" | "rounded" | "tile" | "density" | "slim" | "valueComparator" | "selectStrategy" | "openStrategy" | "lines" | "returnObject" | "itemType"> & {
|
|
6090
6157
|
items?: readonly any[] | undefined;
|
|
6091
6158
|
itemTitle?: SelectItemKey<any>;
|
|
6092
6159
|
itemValue?: SelectItemKey<any>;
|
|
@@ -6463,6 +6530,7 @@ declare const VAutocomplete: {
|
|
|
6463
6530
|
noDataText: string;
|
|
6464
6531
|
messages: string | readonly string[];
|
|
6465
6532
|
rounded: string | number | boolean;
|
|
6533
|
+
tile: boolean;
|
|
6466
6534
|
density: Density;
|
|
6467
6535
|
valueComparator: typeof deepEqual;
|
|
6468
6536
|
clearIcon: IconValue;
|
|
@@ -6515,6 +6583,7 @@ declare const VAutocomplete: {
|
|
|
6515
6583
|
readonly: boolean | null;
|
|
6516
6584
|
noDataText: string;
|
|
6517
6585
|
messages: string | readonly string[];
|
|
6586
|
+
tile: boolean;
|
|
6518
6587
|
density: Density;
|
|
6519
6588
|
valueComparator: typeof deepEqual;
|
|
6520
6589
|
clearIcon: IconValue;
|
|
@@ -6583,6 +6652,7 @@ declare const VAutocomplete: {
|
|
|
6583
6652
|
tag: string;
|
|
6584
6653
|
mandatory: boolean;
|
|
6585
6654
|
rounded: string | number | boolean;
|
|
6655
|
+
tile: boolean;
|
|
6586
6656
|
density: Density;
|
|
6587
6657
|
slim: boolean;
|
|
6588
6658
|
valueComparator: typeof deepEqual;
|
|
@@ -6598,6 +6668,7 @@ declare const VAutocomplete: {
|
|
|
6598
6668
|
disabled: boolean;
|
|
6599
6669
|
tag: string;
|
|
6600
6670
|
mandatory: boolean;
|
|
6671
|
+
tile: boolean;
|
|
6601
6672
|
density: Density;
|
|
6602
6673
|
slim: boolean;
|
|
6603
6674
|
valueComparator: typeof deepEqual;
|
|
@@ -6641,6 +6712,7 @@ declare const VAutocomplete: {
|
|
|
6641
6712
|
disabled: boolean;
|
|
6642
6713
|
tag: string;
|
|
6643
6714
|
mandatory: boolean;
|
|
6715
|
+
tile: boolean;
|
|
6644
6716
|
density: Density;
|
|
6645
6717
|
slim: boolean;
|
|
6646
6718
|
valueComparator: typeof deepEqual;
|
|
@@ -6679,7 +6751,7 @@ declare const VAutocomplete: {
|
|
|
6679
6751
|
value: boolean;
|
|
6680
6752
|
path: unknown[];
|
|
6681
6753
|
}) => any) | undefined;
|
|
6682
|
-
}, "variant" | "nav" | "style" | "disabled" | "tag" | "mandatory" | "rounded" | "density" | "slim" | "valueComparator" | "selectStrategy" | "openStrategy" | "lines" | "returnObject" | "itemType"> & {
|
|
6754
|
+
}, "variant" | "nav" | "style" | "disabled" | "tag" | "mandatory" | "rounded" | "tile" | "density" | "slim" | "valueComparator" | "selectStrategy" | "openStrategy" | "lines" | "returnObject" | "itemType"> & {
|
|
6683
6755
|
items?: readonly any[] | undefined;
|
|
6684
6756
|
itemTitle?: SelectItemKey<any>;
|
|
6685
6757
|
itemValue?: SelectItemKey<any>;
|
|
@@ -7061,6 +7133,7 @@ declare const VAutocomplete: {
|
|
|
7061
7133
|
noDataText: string;
|
|
7062
7134
|
messages: string | readonly string[];
|
|
7063
7135
|
rounded: string | number | boolean;
|
|
7136
|
+
tile: boolean;
|
|
7064
7137
|
density: Density;
|
|
7065
7138
|
valueComparator: typeof deepEqual;
|
|
7066
7139
|
clearIcon: IconValue;
|
|
@@ -7271,6 +7344,7 @@ declare const VAutocomplete: {
|
|
|
7271
7344
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
7272
7345
|
default: undefined;
|
|
7273
7346
|
};
|
|
7347
|
+
tile: BooleanConstructor;
|
|
7274
7348
|
density: {
|
|
7275
7349
|
type: PropType<Density>;
|
|
7276
7350
|
default: string;
|
|
@@ -7375,6 +7449,7 @@ declare const VAutocomplete: {
|
|
|
7375
7449
|
tag: string;
|
|
7376
7450
|
mandatory: boolean;
|
|
7377
7451
|
rounded: string | number | boolean;
|
|
7452
|
+
tile: boolean;
|
|
7378
7453
|
density: Density;
|
|
7379
7454
|
slim: boolean;
|
|
7380
7455
|
valueComparator: typeof deepEqual;
|
|
@@ -7390,6 +7465,7 @@ declare const VAutocomplete: {
|
|
|
7390
7465
|
disabled: boolean;
|
|
7391
7466
|
tag: string;
|
|
7392
7467
|
mandatory: boolean;
|
|
7468
|
+
tile: boolean;
|
|
7393
7469
|
density: Density;
|
|
7394
7470
|
slim: boolean;
|
|
7395
7471
|
valueComparator: typeof deepEqual;
|
|
@@ -7433,6 +7509,7 @@ declare const VAutocomplete: {
|
|
|
7433
7509
|
disabled: boolean;
|
|
7434
7510
|
tag: string;
|
|
7435
7511
|
mandatory: boolean;
|
|
7512
|
+
tile: boolean;
|
|
7436
7513
|
density: Density;
|
|
7437
7514
|
slim: boolean;
|
|
7438
7515
|
valueComparator: typeof deepEqual;
|
|
@@ -7471,7 +7548,7 @@ declare const VAutocomplete: {
|
|
|
7471
7548
|
value: boolean;
|
|
7472
7549
|
path: unknown[];
|
|
7473
7550
|
}) => any) | undefined;
|
|
7474
|
-
}, "variant" | "nav" | "style" | "disabled" | "tag" | "mandatory" | "rounded" | "density" | "slim" | "valueComparator" | "selectStrategy" | "openStrategy" | "lines" | "returnObject" | "itemType"> & {
|
|
7551
|
+
}, "variant" | "nav" | "style" | "disabled" | "tag" | "mandatory" | "rounded" | "tile" | "density" | "slim" | "valueComparator" | "selectStrategy" | "openStrategy" | "lines" | "returnObject" | "itemType"> & {
|
|
7475
7552
|
items?: readonly any[] | undefined;
|
|
7476
7553
|
itemTitle?: SelectItemKey<any>;
|
|
7477
7554
|
itemValue?: SelectItemKey<any>;
|
|
@@ -7920,6 +7997,7 @@ declare const VAutocomplete: {
|
|
|
7920
7997
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
7921
7998
|
default: undefined;
|
|
7922
7999
|
};
|
|
8000
|
+
tile: BooleanConstructor;
|
|
7923
8001
|
density: {
|
|
7924
8002
|
type: PropType<Density>;
|
|
7925
8003
|
default: string;
|
|
@@ -8024,6 +8102,7 @@ declare const VAutocomplete: {
|
|
|
8024
8102
|
tag: string;
|
|
8025
8103
|
mandatory: boolean;
|
|
8026
8104
|
rounded: string | number | boolean;
|
|
8105
|
+
tile: boolean;
|
|
8027
8106
|
density: Density;
|
|
8028
8107
|
slim: boolean;
|
|
8029
8108
|
valueComparator: typeof deepEqual;
|
|
@@ -8039,6 +8118,7 @@ declare const VAutocomplete: {
|
|
|
8039
8118
|
disabled: boolean;
|
|
8040
8119
|
tag: string;
|
|
8041
8120
|
mandatory: boolean;
|
|
8121
|
+
tile: boolean;
|
|
8042
8122
|
density: Density;
|
|
8043
8123
|
slim: boolean;
|
|
8044
8124
|
valueComparator: typeof deepEqual;
|
|
@@ -8082,6 +8162,7 @@ declare const VAutocomplete: {
|
|
|
8082
8162
|
disabled: boolean;
|
|
8083
8163
|
tag: string;
|
|
8084
8164
|
mandatory: boolean;
|
|
8165
|
+
tile: boolean;
|
|
8085
8166
|
density: Density;
|
|
8086
8167
|
slim: boolean;
|
|
8087
8168
|
valueComparator: typeof deepEqual;
|
|
@@ -8120,7 +8201,7 @@ declare const VAutocomplete: {
|
|
|
8120
8201
|
value: boolean;
|
|
8121
8202
|
path: unknown[];
|
|
8122
8203
|
}) => any) | undefined;
|
|
8123
|
-
}, "variant" | "nav" | "style" | "disabled" | "tag" | "mandatory" | "rounded" | "density" | "slim" | "valueComparator" | "selectStrategy" | "openStrategy" | "lines" | "returnObject" | "itemType"> & {
|
|
8204
|
+
}, "variant" | "nav" | "style" | "disabled" | "tag" | "mandatory" | "rounded" | "tile" | "density" | "slim" | "valueComparator" | "selectStrategy" | "openStrategy" | "lines" | "returnObject" | "itemType"> & {
|
|
8124
8205
|
items?: readonly any[] | undefined;
|
|
8125
8206
|
itemTitle?: SelectItemKey<any>;
|
|
8126
8207
|
itemValue?: SelectItemKey<any>;
|
|
@@ -8512,6 +8593,7 @@ declare const VAvatar: {
|
|
|
8512
8593
|
style: vue.StyleValue;
|
|
8513
8594
|
size: string | number;
|
|
8514
8595
|
tag: string;
|
|
8596
|
+
tile: boolean;
|
|
8515
8597
|
density: Density;
|
|
8516
8598
|
} & {
|
|
8517
8599
|
color?: string | undefined;
|
|
@@ -8537,6 +8619,7 @@ declare const VAvatar: {
|
|
|
8537
8619
|
style: vue.StyleValue;
|
|
8538
8620
|
size: string | number;
|
|
8539
8621
|
tag: string;
|
|
8622
|
+
tile: boolean;
|
|
8540
8623
|
density: Density;
|
|
8541
8624
|
} & {
|
|
8542
8625
|
color?: string | undefined;
|
|
@@ -8563,6 +8646,7 @@ declare const VAvatar: {
|
|
|
8563
8646
|
size: string | number;
|
|
8564
8647
|
tag: string;
|
|
8565
8648
|
rounded: string | number | boolean;
|
|
8649
|
+
tile: boolean;
|
|
8566
8650
|
density: Density;
|
|
8567
8651
|
}, true, {}, vue.SlotsType<Partial<{
|
|
8568
8652
|
default: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
@@ -8582,6 +8666,7 @@ declare const VAvatar: {
|
|
|
8582
8666
|
style: vue.StyleValue;
|
|
8583
8667
|
size: string | number;
|
|
8584
8668
|
tag: string;
|
|
8669
|
+
tile: boolean;
|
|
8585
8670
|
density: Density;
|
|
8586
8671
|
} & {
|
|
8587
8672
|
color?: string | undefined;
|
|
@@ -8608,6 +8693,7 @@ declare const VAvatar: {
|
|
|
8608
8693
|
size: string | number;
|
|
8609
8694
|
tag: string;
|
|
8610
8695
|
rounded: string | number | boolean;
|
|
8696
|
+
tile: boolean;
|
|
8611
8697
|
density: Density;
|
|
8612
8698
|
}>;
|
|
8613
8699
|
__isFragment?: undefined;
|
|
@@ -8620,6 +8706,7 @@ declare const VAvatar: {
|
|
|
8620
8706
|
style: vue.StyleValue;
|
|
8621
8707
|
size: string | number;
|
|
8622
8708
|
tag: string;
|
|
8709
|
+
tile: boolean;
|
|
8623
8710
|
density: Density;
|
|
8624
8711
|
} & {
|
|
8625
8712
|
color?: string | undefined;
|
|
@@ -8646,6 +8733,7 @@ declare const VAvatar: {
|
|
|
8646
8733
|
size: string | number;
|
|
8647
8734
|
tag: string;
|
|
8648
8735
|
rounded: string | number | boolean;
|
|
8736
|
+
tile: boolean;
|
|
8649
8737
|
density: Density;
|
|
8650
8738
|
}, {}, string, vue.SlotsType<Partial<{
|
|
8651
8739
|
default: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
@@ -8674,6 +8762,7 @@ declare const VAvatar: {
|
|
|
8674
8762
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
8675
8763
|
default: undefined;
|
|
8676
8764
|
};
|
|
8765
|
+
tile: BooleanConstructor;
|
|
8677
8766
|
density: {
|
|
8678
8767
|
type: vue.PropType<Density>;
|
|
8679
8768
|
default: string;
|
|
@@ -8712,6 +8801,7 @@ declare const VAvatar: {
|
|
|
8712
8801
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
8713
8802
|
default: undefined;
|
|
8714
8803
|
};
|
|
8804
|
+
tile: BooleanConstructor;
|
|
8715
8805
|
density: {
|
|
8716
8806
|
type: vue.PropType<Density>;
|
|
8717
8807
|
default: string;
|
|
@@ -8741,6 +8831,7 @@ declare const VBadge: {
|
|
|
8741
8831
|
style: vue.StyleValue;
|
|
8742
8832
|
tag: string;
|
|
8743
8833
|
dot: boolean;
|
|
8834
|
+
tile: boolean;
|
|
8744
8835
|
floating: boolean;
|
|
8745
8836
|
modelValue: boolean;
|
|
8746
8837
|
bordered: boolean;
|
|
@@ -8777,6 +8868,7 @@ declare const VBadge: {
|
|
|
8777
8868
|
style: vue.StyleValue;
|
|
8778
8869
|
tag: string;
|
|
8779
8870
|
dot: boolean;
|
|
8871
|
+
tile: boolean;
|
|
8780
8872
|
floating: boolean;
|
|
8781
8873
|
modelValue: boolean;
|
|
8782
8874
|
bordered: boolean;
|
|
@@ -8814,6 +8906,7 @@ declare const VBadge: {
|
|
|
8814
8906
|
tag: string;
|
|
8815
8907
|
dot: boolean;
|
|
8816
8908
|
rounded: string | number | boolean;
|
|
8909
|
+
tile: boolean;
|
|
8817
8910
|
floating: boolean;
|
|
8818
8911
|
modelValue: boolean;
|
|
8819
8912
|
bordered: boolean;
|
|
@@ -8841,6 +8934,7 @@ declare const VBadge: {
|
|
|
8841
8934
|
style: vue.StyleValue;
|
|
8842
8935
|
tag: string;
|
|
8843
8936
|
dot: boolean;
|
|
8937
|
+
tile: boolean;
|
|
8844
8938
|
floating: boolean;
|
|
8845
8939
|
modelValue: boolean;
|
|
8846
8940
|
bordered: boolean;
|
|
@@ -8878,6 +8972,7 @@ declare const VBadge: {
|
|
|
8878
8972
|
tag: string;
|
|
8879
8973
|
dot: boolean;
|
|
8880
8974
|
rounded: string | number | boolean;
|
|
8975
|
+
tile: boolean;
|
|
8881
8976
|
floating: boolean;
|
|
8882
8977
|
modelValue: boolean;
|
|
8883
8978
|
bordered: boolean;
|
|
@@ -8895,6 +8990,7 @@ declare const VBadge: {
|
|
|
8895
8990
|
style: vue.StyleValue;
|
|
8896
8991
|
tag: string;
|
|
8897
8992
|
dot: boolean;
|
|
8993
|
+
tile: boolean;
|
|
8898
8994
|
floating: boolean;
|
|
8899
8995
|
modelValue: boolean;
|
|
8900
8996
|
bordered: boolean;
|
|
@@ -8932,6 +9028,7 @@ declare const VBadge: {
|
|
|
8932
9028
|
tag: string;
|
|
8933
9029
|
dot: boolean;
|
|
8934
9030
|
rounded: string | number | boolean;
|
|
9031
|
+
tile: boolean;
|
|
8935
9032
|
floating: boolean;
|
|
8936
9033
|
modelValue: boolean;
|
|
8937
9034
|
bordered: boolean;
|
|
@@ -8966,6 +9063,7 @@ declare const VBadge: {
|
|
|
8966
9063
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
8967
9064
|
default: undefined;
|
|
8968
9065
|
};
|
|
9066
|
+
tile: BooleanConstructor;
|
|
8969
9067
|
location: {
|
|
8970
9068
|
type: vue.PropType<NonNullable<Anchor>>;
|
|
8971
9069
|
default: NonNullable<Anchor>;
|
|
@@ -9018,6 +9116,7 @@ declare const VBadge: {
|
|
|
9018
9116
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
9019
9117
|
default: undefined;
|
|
9020
9118
|
};
|
|
9119
|
+
tile: BooleanConstructor;
|
|
9021
9120
|
location: {
|
|
9022
9121
|
type: vue.PropType<NonNullable<Anchor>>;
|
|
9023
9122
|
default: NonNullable<Anchor>;
|
|
@@ -9054,6 +9153,7 @@ declare const VBanner: {
|
|
|
9054
9153
|
style: vue.StyleValue;
|
|
9055
9154
|
tag: string;
|
|
9056
9155
|
sticky: boolean;
|
|
9156
|
+
tile: boolean;
|
|
9057
9157
|
density: Density;
|
|
9058
9158
|
stacked: boolean;
|
|
9059
9159
|
} & {
|
|
@@ -9099,6 +9199,7 @@ declare const VBanner: {
|
|
|
9099
9199
|
style: vue.StyleValue;
|
|
9100
9200
|
tag: string;
|
|
9101
9201
|
sticky: boolean;
|
|
9202
|
+
tile: boolean;
|
|
9102
9203
|
density: Density;
|
|
9103
9204
|
stacked: boolean;
|
|
9104
9205
|
} & {
|
|
@@ -9145,6 +9246,7 @@ declare const VBanner: {
|
|
|
9145
9246
|
tag: string;
|
|
9146
9247
|
sticky: boolean;
|
|
9147
9248
|
rounded: string | number | boolean;
|
|
9249
|
+
tile: boolean;
|
|
9148
9250
|
density: Density;
|
|
9149
9251
|
stacked: boolean;
|
|
9150
9252
|
}, true, {}, vue.SlotsType<Partial<{
|
|
@@ -9171,6 +9273,7 @@ declare const VBanner: {
|
|
|
9171
9273
|
style: vue.StyleValue;
|
|
9172
9274
|
tag: string;
|
|
9173
9275
|
sticky: boolean;
|
|
9276
|
+
tile: boolean;
|
|
9174
9277
|
density: Density;
|
|
9175
9278
|
stacked: boolean;
|
|
9176
9279
|
} & {
|
|
@@ -9217,6 +9320,7 @@ declare const VBanner: {
|
|
|
9217
9320
|
tag: string;
|
|
9218
9321
|
sticky: boolean;
|
|
9219
9322
|
rounded: string | number | boolean;
|
|
9323
|
+
tile: boolean;
|
|
9220
9324
|
density: Density;
|
|
9221
9325
|
stacked: boolean;
|
|
9222
9326
|
}>;
|
|
@@ -9227,6 +9331,7 @@ declare const VBanner: {
|
|
|
9227
9331
|
style: vue.StyleValue;
|
|
9228
9332
|
tag: string;
|
|
9229
9333
|
sticky: boolean;
|
|
9334
|
+
tile: boolean;
|
|
9230
9335
|
density: Density;
|
|
9231
9336
|
stacked: boolean;
|
|
9232
9337
|
} & {
|
|
@@ -9273,6 +9378,7 @@ declare const VBanner: {
|
|
|
9273
9378
|
tag: string;
|
|
9274
9379
|
sticky: boolean;
|
|
9275
9380
|
rounded: string | number | boolean;
|
|
9381
|
+
tile: boolean;
|
|
9276
9382
|
density: Density;
|
|
9277
9383
|
stacked: boolean;
|
|
9278
9384
|
}, {}, string, vue.SlotsType<Partial<{
|
|
@@ -9298,6 +9404,7 @@ declare const VBanner: {
|
|
|
9298
9404
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
9299
9405
|
default: undefined;
|
|
9300
9406
|
};
|
|
9407
|
+
tile: BooleanConstructor;
|
|
9301
9408
|
position: {
|
|
9302
9409
|
type: PropType<"fixed" | "absolute" | "static" | "sticky" | "relative">;
|
|
9303
9410
|
validator: (v: any) => boolean;
|
|
@@ -9343,6 +9450,7 @@ declare const VBanner: {
|
|
|
9343
9450
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
9344
9451
|
default: undefined;
|
|
9345
9452
|
};
|
|
9453
|
+
tile: BooleanConstructor;
|
|
9346
9454
|
position: {
|
|
9347
9455
|
type: PropType<"fixed" | "absolute" | "static" | "sticky" | "relative">;
|
|
9348
9456
|
validator: (v: any) => boolean;
|
|
@@ -9611,6 +9719,7 @@ declare const VBottomNavigation: {
|
|
|
9611
9719
|
disabled: boolean;
|
|
9612
9720
|
multiple: boolean;
|
|
9613
9721
|
tag: string;
|
|
9722
|
+
tile: boolean;
|
|
9614
9723
|
density: Density;
|
|
9615
9724
|
selectedClass: string;
|
|
9616
9725
|
grow: boolean;
|
|
@@ -9637,6 +9746,7 @@ declare const VBottomNavigation: {
|
|
|
9637
9746
|
disabled: boolean;
|
|
9638
9747
|
multiple: boolean;
|
|
9639
9748
|
tag: string;
|
|
9749
|
+
tile: boolean;
|
|
9640
9750
|
density: Density;
|
|
9641
9751
|
selectedClass: string;
|
|
9642
9752
|
grow: boolean;
|
|
@@ -9662,6 +9772,7 @@ declare const VBottomNavigation: {
|
|
|
9662
9772
|
multiple: boolean;
|
|
9663
9773
|
tag: string;
|
|
9664
9774
|
rounded: string | number | boolean;
|
|
9775
|
+
tile: boolean;
|
|
9665
9776
|
density: Density;
|
|
9666
9777
|
selectedClass: string;
|
|
9667
9778
|
grow: boolean;
|
|
@@ -9686,6 +9797,7 @@ declare const VBottomNavigation: {
|
|
|
9686
9797
|
disabled: boolean;
|
|
9687
9798
|
multiple: boolean;
|
|
9688
9799
|
tag: string;
|
|
9800
|
+
tile: boolean;
|
|
9689
9801
|
density: Density;
|
|
9690
9802
|
selectedClass: string;
|
|
9691
9803
|
grow: boolean;
|
|
@@ -9711,6 +9823,7 @@ declare const VBottomNavigation: {
|
|
|
9711
9823
|
multiple: boolean;
|
|
9712
9824
|
tag: string;
|
|
9713
9825
|
rounded: string | number | boolean;
|
|
9826
|
+
tile: boolean;
|
|
9714
9827
|
density: Density;
|
|
9715
9828
|
selectedClass: string;
|
|
9716
9829
|
grow: boolean;
|
|
@@ -9728,6 +9841,7 @@ declare const VBottomNavigation: {
|
|
|
9728
9841
|
disabled: boolean;
|
|
9729
9842
|
multiple: boolean;
|
|
9730
9843
|
tag: string;
|
|
9844
|
+
tile: boolean;
|
|
9731
9845
|
density: Density;
|
|
9732
9846
|
selectedClass: string;
|
|
9733
9847
|
grow: boolean;
|
|
@@ -9755,6 +9869,7 @@ declare const VBottomNavigation: {
|
|
|
9755
9869
|
multiple: boolean;
|
|
9756
9870
|
tag: string;
|
|
9757
9871
|
rounded: string | number | boolean;
|
|
9872
|
+
tile: boolean;
|
|
9758
9873
|
density: Density;
|
|
9759
9874
|
selectedClass: string;
|
|
9760
9875
|
grow: boolean;
|
|
@@ -9811,6 +9926,7 @@ declare const VBottomNavigation: {
|
|
|
9811
9926
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
9812
9927
|
default: undefined;
|
|
9813
9928
|
};
|
|
9929
|
+
tile: BooleanConstructor;
|
|
9814
9930
|
elevation: {
|
|
9815
9931
|
type: (StringConstructor | NumberConstructor)[];
|
|
9816
9932
|
validator(v: any): boolean;
|
|
@@ -9880,6 +9996,7 @@ declare const VBottomNavigation: {
|
|
|
9880
9996
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
9881
9997
|
default: undefined;
|
|
9882
9998
|
};
|
|
9999
|
+
tile: BooleanConstructor;
|
|
9883
10000
|
elevation: {
|
|
9884
10001
|
type: (StringConstructor | NumberConstructor)[];
|
|
9885
10002
|
validator(v: any): boolean;
|
|
@@ -10633,6 +10750,7 @@ declare const VBreadcrumbs: {
|
|
|
10633
10750
|
disabled: boolean;
|
|
10634
10751
|
tag: string;
|
|
10635
10752
|
divider: string;
|
|
10753
|
+
tile: boolean;
|
|
10636
10754
|
density: Density;
|
|
10637
10755
|
} & {
|
|
10638
10756
|
color?: string | undefined;
|
|
@@ -10647,6 +10765,7 @@ declare const VBreadcrumbs: {
|
|
|
10647
10765
|
disabled: boolean;
|
|
10648
10766
|
tag: string;
|
|
10649
10767
|
divider: string;
|
|
10768
|
+
tile: boolean;
|
|
10650
10769
|
density: Density;
|
|
10651
10770
|
} & {
|
|
10652
10771
|
color?: string | undefined;
|
|
@@ -10662,6 +10781,7 @@ declare const VBreadcrumbs: {
|
|
|
10662
10781
|
tag: string;
|
|
10663
10782
|
divider: string;
|
|
10664
10783
|
rounded: string | number | boolean;
|
|
10784
|
+
tile: boolean;
|
|
10665
10785
|
density: Density;
|
|
10666
10786
|
}, true, {}, vue.SlotsType<Partial<{
|
|
10667
10787
|
prepend: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
@@ -10700,6 +10820,7 @@ declare const VBreadcrumbs: {
|
|
|
10700
10820
|
disabled: boolean;
|
|
10701
10821
|
tag: string;
|
|
10702
10822
|
divider: string;
|
|
10823
|
+
tile: boolean;
|
|
10703
10824
|
density: Density;
|
|
10704
10825
|
} & {
|
|
10705
10826
|
color?: string | undefined;
|
|
@@ -10715,6 +10836,7 @@ declare const VBreadcrumbs: {
|
|
|
10715
10836
|
tag: string;
|
|
10716
10837
|
divider: string;
|
|
10717
10838
|
rounded: string | number | boolean;
|
|
10839
|
+
tile: boolean;
|
|
10718
10840
|
density: Density;
|
|
10719
10841
|
}>;
|
|
10720
10842
|
__isFragment?: undefined;
|
|
@@ -10725,6 +10847,7 @@ declare const VBreadcrumbs: {
|
|
|
10725
10847
|
disabled: boolean;
|
|
10726
10848
|
tag: string;
|
|
10727
10849
|
divider: string;
|
|
10850
|
+
tile: boolean;
|
|
10728
10851
|
density: Density;
|
|
10729
10852
|
} & {
|
|
10730
10853
|
color?: string | undefined;
|
|
@@ -10740,6 +10863,7 @@ declare const VBreadcrumbs: {
|
|
|
10740
10863
|
tag: string;
|
|
10741
10864
|
divider: string;
|
|
10742
10865
|
rounded: string | number | boolean;
|
|
10866
|
+
tile: boolean;
|
|
10743
10867
|
density: Density;
|
|
10744
10868
|
}, {}, string, vue.SlotsType<Partial<{
|
|
10745
10869
|
prepend: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
@@ -10812,6 +10936,7 @@ declare const VBreadcrumbs: {
|
|
|
10812
10936
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
10813
10937
|
default: undefined;
|
|
10814
10938
|
};
|
|
10939
|
+
tile: BooleanConstructor;
|
|
10815
10940
|
density: {
|
|
10816
10941
|
type: PropType<Density>;
|
|
10817
10942
|
default: string;
|
|
@@ -10848,6 +10973,7 @@ declare const VBreadcrumbs: {
|
|
|
10848
10973
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
10849
10974
|
default: undefined;
|
|
10850
10975
|
};
|
|
10976
|
+
tile: BooleanConstructor;
|
|
10851
10977
|
density: {
|
|
10852
10978
|
type: PropType<Density>;
|
|
10853
10979
|
default: string;
|
|
@@ -11172,6 +11298,7 @@ declare const VBtn: {
|
|
|
11172
11298
|
disabled: boolean;
|
|
11173
11299
|
size: string | number;
|
|
11174
11300
|
tag: string;
|
|
11301
|
+
tile: boolean;
|
|
11175
11302
|
density: Density;
|
|
11176
11303
|
slim: boolean;
|
|
11177
11304
|
stacked: boolean;
|
|
@@ -11242,6 +11369,7 @@ declare const VBtn: {
|
|
|
11242
11369
|
disabled: boolean;
|
|
11243
11370
|
size: string | number;
|
|
11244
11371
|
tag: string;
|
|
11372
|
+
tile: boolean;
|
|
11245
11373
|
density: Density;
|
|
11246
11374
|
slim: boolean;
|
|
11247
11375
|
stacked: boolean;
|
|
@@ -11308,6 +11436,7 @@ declare const VBtn: {
|
|
|
11308
11436
|
size: string | number;
|
|
11309
11437
|
tag: string;
|
|
11310
11438
|
rounded: string | number | boolean;
|
|
11439
|
+
tile: boolean;
|
|
11311
11440
|
density: Density;
|
|
11312
11441
|
slim: boolean;
|
|
11313
11442
|
stacked: boolean;
|
|
@@ -11345,6 +11474,7 @@ declare const VBtn: {
|
|
|
11345
11474
|
disabled: boolean;
|
|
11346
11475
|
size: string | number;
|
|
11347
11476
|
tag: string;
|
|
11477
|
+
tile: boolean;
|
|
11348
11478
|
density: Density;
|
|
11349
11479
|
slim: boolean;
|
|
11350
11480
|
stacked: boolean;
|
|
@@ -11413,6 +11543,7 @@ declare const VBtn: {
|
|
|
11413
11543
|
size: string | number;
|
|
11414
11544
|
tag: string;
|
|
11415
11545
|
rounded: string | number | boolean;
|
|
11546
|
+
tile: boolean;
|
|
11416
11547
|
density: Density;
|
|
11417
11548
|
slim: boolean;
|
|
11418
11549
|
stacked: boolean;
|
|
@@ -11434,6 +11565,7 @@ declare const VBtn: {
|
|
|
11434
11565
|
disabled: boolean;
|
|
11435
11566
|
size: string | number;
|
|
11436
11567
|
tag: string;
|
|
11568
|
+
tile: boolean;
|
|
11437
11569
|
density: Density;
|
|
11438
11570
|
slim: boolean;
|
|
11439
11571
|
stacked: boolean;
|
|
@@ -11506,6 +11638,7 @@ declare const VBtn: {
|
|
|
11506
11638
|
size: string | number;
|
|
11507
11639
|
tag: string;
|
|
11508
11640
|
rounded: string | number | boolean;
|
|
11641
|
+
tile: boolean;
|
|
11509
11642
|
density: Density;
|
|
11510
11643
|
slim: boolean;
|
|
11511
11644
|
stacked: boolean;
|
|
@@ -11555,6 +11688,7 @@ declare const VBtn: {
|
|
|
11555
11688
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
11556
11689
|
default: undefined;
|
|
11557
11690
|
};
|
|
11691
|
+
tile: BooleanConstructor;
|
|
11558
11692
|
position: {
|
|
11559
11693
|
type: PropType<"fixed" | "absolute" | "static" | "sticky" | "relative">;
|
|
11560
11694
|
validator: (v: any) => boolean;
|
|
@@ -11637,6 +11771,7 @@ declare const VBtn: {
|
|
|
11637
11771
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
11638
11772
|
default: undefined;
|
|
11639
11773
|
};
|
|
11774
|
+
tile: BooleanConstructor;
|
|
11640
11775
|
position: {
|
|
11641
11776
|
type: PropType<"fixed" | "absolute" | "static" | "sticky" | "relative">;
|
|
11642
11777
|
validator: (v: any) => boolean;
|
|
@@ -11697,6 +11832,7 @@ declare const VBtnGroup: {
|
|
|
11697
11832
|
variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
|
|
11698
11833
|
style: vue.StyleValue;
|
|
11699
11834
|
tag: string;
|
|
11835
|
+
tile: boolean;
|
|
11700
11836
|
density: Density;
|
|
11701
11837
|
divided: boolean;
|
|
11702
11838
|
} & {
|
|
@@ -11719,6 +11855,7 @@ declare const VBtnGroup: {
|
|
|
11719
11855
|
variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
|
|
11720
11856
|
style: vue.StyleValue;
|
|
11721
11857
|
tag: string;
|
|
11858
|
+
tile: boolean;
|
|
11722
11859
|
density: Density;
|
|
11723
11860
|
divided: boolean;
|
|
11724
11861
|
} & {
|
|
@@ -11742,6 +11879,7 @@ declare const VBtnGroup: {
|
|
|
11742
11879
|
style: vue.StyleValue;
|
|
11743
11880
|
tag: string;
|
|
11744
11881
|
rounded: string | number | boolean;
|
|
11882
|
+
tile: boolean;
|
|
11745
11883
|
density: Density;
|
|
11746
11884
|
divided: boolean;
|
|
11747
11885
|
}, true, {}, vue.SlotsType<Partial<{
|
|
@@ -11759,6 +11897,7 @@ declare const VBtnGroup: {
|
|
|
11759
11897
|
variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
|
|
11760
11898
|
style: vue.StyleValue;
|
|
11761
11899
|
tag: string;
|
|
11900
|
+
tile: boolean;
|
|
11762
11901
|
density: Density;
|
|
11763
11902
|
divided: boolean;
|
|
11764
11903
|
} & {
|
|
@@ -11782,6 +11921,7 @@ declare const VBtnGroup: {
|
|
|
11782
11921
|
style: vue.StyleValue;
|
|
11783
11922
|
tag: string;
|
|
11784
11923
|
rounded: string | number | boolean;
|
|
11924
|
+
tile: boolean;
|
|
11785
11925
|
density: Density;
|
|
11786
11926
|
divided: boolean;
|
|
11787
11927
|
}>;
|
|
@@ -11792,6 +11932,7 @@ declare const VBtnGroup: {
|
|
|
11792
11932
|
variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
|
|
11793
11933
|
style: vue.StyleValue;
|
|
11794
11934
|
tag: string;
|
|
11935
|
+
tile: boolean;
|
|
11795
11936
|
density: Density;
|
|
11796
11937
|
divided: boolean;
|
|
11797
11938
|
} & {
|
|
@@ -11815,6 +11956,7 @@ declare const VBtnGroup: {
|
|
|
11815
11956
|
style: vue.StyleValue;
|
|
11816
11957
|
tag: string;
|
|
11817
11958
|
rounded: string | number | boolean;
|
|
11959
|
+
tile: boolean;
|
|
11818
11960
|
density: Density;
|
|
11819
11961
|
divided: boolean;
|
|
11820
11962
|
}, {}, string, vue.SlotsType<Partial<{
|
|
@@ -11837,6 +11979,7 @@ declare const VBtnGroup: {
|
|
|
11837
11979
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
11838
11980
|
default: undefined;
|
|
11839
11981
|
};
|
|
11982
|
+
tile: BooleanConstructor;
|
|
11840
11983
|
elevation: {
|
|
11841
11984
|
type: (StringConstructor | NumberConstructor)[];
|
|
11842
11985
|
validator(v: any): boolean;
|
|
@@ -11869,6 +12012,7 @@ declare const VBtnGroup: {
|
|
|
11869
12012
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
11870
12013
|
default: undefined;
|
|
11871
12014
|
};
|
|
12015
|
+
tile: BooleanConstructor;
|
|
11872
12016
|
elevation: {
|
|
11873
12017
|
type: (StringConstructor | NumberConstructor)[];
|
|
11874
12018
|
validator(v: any): boolean;
|
|
@@ -11901,6 +12045,7 @@ declare const VBtnToggle: {
|
|
|
11901
12045
|
disabled: boolean;
|
|
11902
12046
|
multiple: boolean;
|
|
11903
12047
|
tag: string;
|
|
12048
|
+
tile: boolean;
|
|
11904
12049
|
density: Density;
|
|
11905
12050
|
divided: boolean;
|
|
11906
12051
|
} & {
|
|
@@ -11925,6 +12070,7 @@ declare const VBtnToggle: {
|
|
|
11925
12070
|
disabled: boolean;
|
|
11926
12071
|
multiple: boolean;
|
|
11927
12072
|
tag: string;
|
|
12073
|
+
tile: boolean;
|
|
11928
12074
|
density: Density;
|
|
11929
12075
|
divided: boolean;
|
|
11930
12076
|
} & {
|
|
@@ -11944,6 +12090,7 @@ declare const VBtnToggle: {
|
|
|
11944
12090
|
multiple: boolean;
|
|
11945
12091
|
tag: string;
|
|
11946
12092
|
rounded: string | number | boolean;
|
|
12093
|
+
tile: boolean;
|
|
11947
12094
|
density: Density;
|
|
11948
12095
|
divided: boolean;
|
|
11949
12096
|
}, true, {}, vue.SlotsType<Partial<{
|
|
@@ -11963,6 +12110,7 @@ declare const VBtnToggle: {
|
|
|
11963
12110
|
disabled: boolean;
|
|
11964
12111
|
multiple: boolean;
|
|
11965
12112
|
tag: string;
|
|
12113
|
+
tile: boolean;
|
|
11966
12114
|
density: Density;
|
|
11967
12115
|
divided: boolean;
|
|
11968
12116
|
} & {
|
|
@@ -11986,6 +12134,7 @@ declare const VBtnToggle: {
|
|
|
11986
12134
|
multiple: boolean;
|
|
11987
12135
|
tag: string;
|
|
11988
12136
|
rounded: string | number | boolean;
|
|
12137
|
+
tile: boolean;
|
|
11989
12138
|
density: Density;
|
|
11990
12139
|
divided: boolean;
|
|
11991
12140
|
}>;
|
|
@@ -11998,6 +12147,7 @@ declare const VBtnToggle: {
|
|
|
11998
12147
|
disabled: boolean;
|
|
11999
12148
|
multiple: boolean;
|
|
12000
12149
|
tag: string;
|
|
12150
|
+
tile: boolean;
|
|
12001
12151
|
density: Density;
|
|
12002
12152
|
divided: boolean;
|
|
12003
12153
|
} & {
|
|
@@ -12023,6 +12173,7 @@ declare const VBtnToggle: {
|
|
|
12023
12173
|
multiple: boolean;
|
|
12024
12174
|
tag: string;
|
|
12025
12175
|
rounded: string | number | boolean;
|
|
12176
|
+
tile: boolean;
|
|
12026
12177
|
density: Density;
|
|
12027
12178
|
divided: boolean;
|
|
12028
12179
|
}, {}, string, vue.SlotsType<Partial<{
|
|
@@ -12060,6 +12211,7 @@ declare const VBtnToggle: {
|
|
|
12060
12211
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
12061
12212
|
default: undefined;
|
|
12062
12213
|
};
|
|
12214
|
+
tile: BooleanConstructor;
|
|
12063
12215
|
elevation: {
|
|
12064
12216
|
type: (StringConstructor | NumberConstructor)[];
|
|
12065
12217
|
validator(v: any): boolean;
|
|
@@ -12101,6 +12253,7 @@ declare const VBtnToggle: {
|
|
|
12101
12253
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
12102
12254
|
default: undefined;
|
|
12103
12255
|
};
|
|
12256
|
+
tile: BooleanConstructor;
|
|
12104
12257
|
elevation: {
|
|
12105
12258
|
type: (StringConstructor | NumberConstructor)[];
|
|
12106
12259
|
validator(v: any): boolean;
|
|
@@ -12347,6 +12500,7 @@ declare const VCard: {
|
|
|
12347
12500
|
style: vue.StyleValue;
|
|
12348
12501
|
disabled: boolean;
|
|
12349
12502
|
tag: string;
|
|
12503
|
+
tile: boolean;
|
|
12350
12504
|
density: Density;
|
|
12351
12505
|
ripple: boolean | {
|
|
12352
12506
|
class: string;
|
|
@@ -12423,6 +12577,7 @@ declare const VCard: {
|
|
|
12423
12577
|
style: vue.StyleValue;
|
|
12424
12578
|
disabled: boolean;
|
|
12425
12579
|
tag: string;
|
|
12580
|
+
tile: boolean;
|
|
12426
12581
|
density: Density;
|
|
12427
12582
|
ripple: boolean | {
|
|
12428
12583
|
class: string;
|
|
@@ -12501,6 +12656,7 @@ declare const VCard: {
|
|
|
12501
12656
|
disabled: boolean;
|
|
12502
12657
|
tag: string;
|
|
12503
12658
|
rounded: string | number | boolean;
|
|
12659
|
+
tile: boolean;
|
|
12504
12660
|
density: Density;
|
|
12505
12661
|
ripple: boolean | {
|
|
12506
12662
|
class: string;
|
|
@@ -12552,6 +12708,7 @@ declare const VCard: {
|
|
|
12552
12708
|
style: vue.StyleValue;
|
|
12553
12709
|
disabled: boolean;
|
|
12554
12710
|
tag: string;
|
|
12711
|
+
tile: boolean;
|
|
12555
12712
|
density: Density;
|
|
12556
12713
|
ripple: boolean | {
|
|
12557
12714
|
class: string;
|
|
@@ -12630,6 +12787,7 @@ declare const VCard: {
|
|
|
12630
12787
|
disabled: boolean;
|
|
12631
12788
|
tag: string;
|
|
12632
12789
|
rounded: string | number | boolean;
|
|
12790
|
+
tile: boolean;
|
|
12633
12791
|
density: Density;
|
|
12634
12792
|
ripple: boolean | {
|
|
12635
12793
|
class: string;
|
|
@@ -12647,6 +12805,7 @@ declare const VCard: {
|
|
|
12647
12805
|
style: vue.StyleValue;
|
|
12648
12806
|
disabled: boolean;
|
|
12649
12807
|
tag: string;
|
|
12808
|
+
tile: boolean;
|
|
12650
12809
|
density: Density;
|
|
12651
12810
|
ripple: boolean | {
|
|
12652
12811
|
class: string;
|
|
@@ -12725,6 +12884,7 @@ declare const VCard: {
|
|
|
12725
12884
|
disabled: boolean;
|
|
12726
12885
|
tag: string;
|
|
12727
12886
|
rounded: string | number | boolean;
|
|
12887
|
+
tile: boolean;
|
|
12728
12888
|
density: Density;
|
|
12729
12889
|
ripple: boolean | {
|
|
12730
12890
|
class: string;
|
|
@@ -12784,6 +12944,7 @@ declare const VCard: {
|
|
|
12784
12944
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
12785
12945
|
default: undefined;
|
|
12786
12946
|
};
|
|
12947
|
+
tile: BooleanConstructor;
|
|
12787
12948
|
position: {
|
|
12788
12949
|
type: PropType<"fixed" | "absolute" | "static" | "sticky" | "relative">;
|
|
12789
12950
|
validator: (v: any) => boolean;
|
|
@@ -12855,6 +13016,7 @@ declare const VCard: {
|
|
|
12855
13016
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
12856
13017
|
default: undefined;
|
|
12857
13018
|
};
|
|
13019
|
+
tile: BooleanConstructor;
|
|
12858
13020
|
position: {
|
|
12859
13021
|
type: PropType<"fixed" | "absolute" | "static" | "sticky" | "relative">;
|
|
12860
13022
|
validator: (v: any) => boolean;
|
|
@@ -14092,6 +14254,7 @@ declare const VImg: {
|
|
|
14092
14254
|
options: IntersectionObserverInit;
|
|
14093
14255
|
cover: boolean;
|
|
14094
14256
|
src: string | srcObject;
|
|
14257
|
+
tile: boolean;
|
|
14095
14258
|
} & {
|
|
14096
14259
|
height?: string | number | undefined;
|
|
14097
14260
|
width?: string | number | undefined;
|
|
@@ -14155,6 +14318,7 @@ declare const VImg: {
|
|
|
14155
14318
|
options: IntersectionObserverInit;
|
|
14156
14319
|
cover: boolean;
|
|
14157
14320
|
src: string | srcObject;
|
|
14321
|
+
tile: boolean;
|
|
14158
14322
|
} & {
|
|
14159
14323
|
height?: string | number | undefined;
|
|
14160
14324
|
width?: string | number | undefined;
|
|
@@ -14210,6 +14374,7 @@ declare const VImg: {
|
|
|
14210
14374
|
cover: boolean;
|
|
14211
14375
|
src: string | srcObject;
|
|
14212
14376
|
rounded: string | number | boolean;
|
|
14377
|
+
tile: boolean;
|
|
14213
14378
|
}, true, {}, vue.SlotsType<Partial<{
|
|
14214
14379
|
default: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
14215
14380
|
[key: string]: any;
|
|
@@ -14240,6 +14405,7 @@ declare const VImg: {
|
|
|
14240
14405
|
options: IntersectionObserverInit;
|
|
14241
14406
|
cover: boolean;
|
|
14242
14407
|
src: string | srcObject;
|
|
14408
|
+
tile: boolean;
|
|
14243
14409
|
} & {
|
|
14244
14410
|
height?: string | number | undefined;
|
|
14245
14411
|
width?: string | number | undefined;
|
|
@@ -14301,6 +14467,7 @@ declare const VImg: {
|
|
|
14301
14467
|
cover: boolean;
|
|
14302
14468
|
src: string | srcObject;
|
|
14303
14469
|
rounded: string | number | boolean;
|
|
14470
|
+
tile: boolean;
|
|
14304
14471
|
}>;
|
|
14305
14472
|
__isFragment?: undefined;
|
|
14306
14473
|
__isTeleport?: undefined;
|
|
@@ -14315,6 +14482,7 @@ declare const VImg: {
|
|
|
14315
14482
|
options: IntersectionObserverInit;
|
|
14316
14483
|
cover: boolean;
|
|
14317
14484
|
src: string | srcObject;
|
|
14485
|
+
tile: boolean;
|
|
14318
14486
|
} & {
|
|
14319
14487
|
height?: string | number | undefined;
|
|
14320
14488
|
width?: string | number | undefined;
|
|
@@ -14380,6 +14548,7 @@ declare const VImg: {
|
|
|
14380
14548
|
cover: boolean;
|
|
14381
14549
|
src: string | srcObject;
|
|
14382
14550
|
rounded: string | number | boolean;
|
|
14551
|
+
tile: boolean;
|
|
14383
14552
|
}, {}, string, vue.SlotsType<Partial<{
|
|
14384
14553
|
default: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
14385
14554
|
[key: string]: any;
|
|
@@ -14405,6 +14574,7 @@ declare const VImg: {
|
|
|
14405
14574
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
14406
14575
|
default: undefined;
|
|
14407
14576
|
};
|
|
14577
|
+
tile: BooleanConstructor;
|
|
14408
14578
|
class: PropType<any>;
|
|
14409
14579
|
style: {
|
|
14410
14580
|
type: PropType<vue.StyleValue>;
|
|
@@ -14458,6 +14628,7 @@ declare const VImg: {
|
|
|
14458
14628
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
14459
14629
|
default: undefined;
|
|
14460
14630
|
};
|
|
14631
|
+
tile: BooleanConstructor;
|
|
14461
14632
|
class: PropType<any>;
|
|
14462
14633
|
style: {
|
|
14463
14634
|
type: PropType<vue.StyleValue>;
|
|
@@ -14511,6 +14682,7 @@ declare const VCarouselItem: {
|
|
|
14511
14682
|
options: IntersectionObserverInit;
|
|
14512
14683
|
cover: boolean;
|
|
14513
14684
|
src: string | srcObject;
|
|
14685
|
+
tile: boolean;
|
|
14514
14686
|
} & {
|
|
14515
14687
|
height?: string | number | undefined;
|
|
14516
14688
|
width?: string | number | undefined;
|
|
@@ -14562,6 +14734,7 @@ declare const VCarouselItem: {
|
|
|
14562
14734
|
options: IntersectionObserverInit;
|
|
14563
14735
|
cover: boolean;
|
|
14564
14736
|
src: string | srcObject;
|
|
14737
|
+
tile: boolean;
|
|
14565
14738
|
} & {
|
|
14566
14739
|
height?: string | number | undefined;
|
|
14567
14740
|
width?: string | number | undefined;
|
|
@@ -14616,6 +14789,7 @@ declare const VCarouselItem: {
|
|
|
14616
14789
|
cover: boolean;
|
|
14617
14790
|
src: string | srcObject;
|
|
14618
14791
|
rounded: string | number | boolean;
|
|
14792
|
+
tile: boolean;
|
|
14619
14793
|
reverseTransition: string | boolean;
|
|
14620
14794
|
}, true, {}, vue.SlotsType<Partial<{
|
|
14621
14795
|
default: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
@@ -14645,6 +14819,7 @@ declare const VCarouselItem: {
|
|
|
14645
14819
|
options: IntersectionObserverInit;
|
|
14646
14820
|
cover: boolean;
|
|
14647
14821
|
src: string | srcObject;
|
|
14822
|
+
tile: boolean;
|
|
14648
14823
|
} & {
|
|
14649
14824
|
height?: string | number | undefined;
|
|
14650
14825
|
width?: string | number | undefined;
|
|
@@ -14699,6 +14874,7 @@ declare const VCarouselItem: {
|
|
|
14699
14874
|
cover: boolean;
|
|
14700
14875
|
src: string | srcObject;
|
|
14701
14876
|
rounded: string | number | boolean;
|
|
14877
|
+
tile: boolean;
|
|
14702
14878
|
reverseTransition: string | boolean;
|
|
14703
14879
|
}>;
|
|
14704
14880
|
__isFragment?: undefined;
|
|
@@ -14712,6 +14888,7 @@ declare const VCarouselItem: {
|
|
|
14712
14888
|
options: IntersectionObserverInit;
|
|
14713
14889
|
cover: boolean;
|
|
14714
14890
|
src: string | srcObject;
|
|
14891
|
+
tile: boolean;
|
|
14715
14892
|
} & {
|
|
14716
14893
|
height?: string | number | undefined;
|
|
14717
14894
|
width?: string | number | undefined;
|
|
@@ -14766,6 +14943,7 @@ declare const VCarouselItem: {
|
|
|
14766
14943
|
cover: boolean;
|
|
14767
14944
|
src: string | srcObject;
|
|
14768
14945
|
rounded: string | number | boolean;
|
|
14946
|
+
tile: boolean;
|
|
14769
14947
|
reverseTransition: string | boolean;
|
|
14770
14948
|
}, {}, string, vue.SlotsType<Partial<{
|
|
14771
14949
|
default: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
@@ -14802,6 +14980,7 @@ declare const VCarouselItem: {
|
|
|
14802
14980
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
14803
14981
|
default: undefined;
|
|
14804
14982
|
};
|
|
14983
|
+
tile: BooleanConstructor;
|
|
14805
14984
|
height: (StringConstructor | NumberConstructor)[];
|
|
14806
14985
|
maxHeight: (StringConstructor | NumberConstructor)[];
|
|
14807
14986
|
maxWidth: (StringConstructor | NumberConstructor)[];
|
|
@@ -14859,6 +15038,7 @@ declare const VCarouselItem: {
|
|
|
14859
15038
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
14860
15039
|
default: undefined;
|
|
14861
15040
|
};
|
|
15041
|
+
tile: BooleanConstructor;
|
|
14862
15042
|
height: (StringConstructor | NumberConstructor)[];
|
|
14863
15043
|
maxHeight: (StringConstructor | NumberConstructor)[];
|
|
14864
15044
|
maxWidth: (StringConstructor | NumberConstructor)[];
|
|
@@ -16319,6 +16499,7 @@ declare const VChip: {
|
|
|
16319
16499
|
disabled: boolean;
|
|
16320
16500
|
size: string | number;
|
|
16321
16501
|
tag: string;
|
|
16502
|
+
tile: boolean;
|
|
16322
16503
|
density: Density;
|
|
16323
16504
|
modelValue: boolean;
|
|
16324
16505
|
ripple: boolean | {
|
|
@@ -16426,6 +16607,7 @@ declare const VChip: {
|
|
|
16426
16607
|
disabled: boolean;
|
|
16427
16608
|
size: string | number;
|
|
16428
16609
|
tag: string;
|
|
16610
|
+
tile: boolean;
|
|
16429
16611
|
density: Density;
|
|
16430
16612
|
modelValue: boolean;
|
|
16431
16613
|
ripple: boolean | {
|
|
@@ -16528,6 +16710,7 @@ declare const VChip: {
|
|
|
16528
16710
|
size: string | number;
|
|
16529
16711
|
tag: string;
|
|
16530
16712
|
rounded: string | number | boolean;
|
|
16713
|
+
tile: boolean;
|
|
16531
16714
|
density: Density;
|
|
16532
16715
|
modelValue: boolean;
|
|
16533
16716
|
ripple: boolean | {
|
|
@@ -16582,6 +16765,7 @@ declare const VChip: {
|
|
|
16582
16765
|
disabled: boolean;
|
|
16583
16766
|
size: string | number;
|
|
16584
16767
|
tag: string;
|
|
16768
|
+
tile: boolean;
|
|
16585
16769
|
density: Density;
|
|
16586
16770
|
modelValue: boolean;
|
|
16587
16771
|
ripple: boolean | {
|
|
@@ -16684,6 +16868,7 @@ declare const VChip: {
|
|
|
16684
16868
|
size: string | number;
|
|
16685
16869
|
tag: string;
|
|
16686
16870
|
rounded: string | number | boolean;
|
|
16871
|
+
tile: boolean;
|
|
16687
16872
|
density: Density;
|
|
16688
16873
|
modelValue: boolean;
|
|
16689
16874
|
ripple: boolean | {
|
|
@@ -16709,6 +16894,7 @@ declare const VChip: {
|
|
|
16709
16894
|
disabled: boolean;
|
|
16710
16895
|
size: string | number;
|
|
16711
16896
|
tag: string;
|
|
16897
|
+
tile: boolean;
|
|
16712
16898
|
density: Density;
|
|
16713
16899
|
modelValue: boolean;
|
|
16714
16900
|
ripple: boolean | {
|
|
@@ -16818,6 +17004,7 @@ declare const VChip: {
|
|
|
16818
17004
|
size: string | number;
|
|
16819
17005
|
tag: string;
|
|
16820
17006
|
rounded: string | number | boolean;
|
|
17007
|
+
tile: boolean;
|
|
16821
17008
|
density: Density;
|
|
16822
17009
|
modelValue: boolean;
|
|
16823
17010
|
ripple: boolean | {
|
|
@@ -16884,6 +17071,7 @@ declare const VChip: {
|
|
|
16884
17071
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
16885
17072
|
default: undefined;
|
|
16886
17073
|
};
|
|
17074
|
+
tile: BooleanConstructor;
|
|
16887
17075
|
value: null;
|
|
16888
17076
|
disabled: BooleanConstructor;
|
|
16889
17077
|
selectedClass: StringConstructor;
|
|
@@ -16971,6 +17159,7 @@ declare const VChip: {
|
|
|
16971
17159
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
16972
17160
|
default: undefined;
|
|
16973
17161
|
};
|
|
17162
|
+
tile: BooleanConstructor;
|
|
16974
17163
|
value: null;
|
|
16975
17164
|
disabled: BooleanConstructor;
|
|
16976
17165
|
selectedClass: StringConstructor;
|
|
@@ -17532,6 +17721,7 @@ declare const VColorPicker: {
|
|
|
17532
17721
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
17533
17722
|
default: undefined;
|
|
17534
17723
|
};
|
|
17724
|
+
tile: BooleanConstructor;
|
|
17535
17725
|
canvasHeight: {
|
|
17536
17726
|
type: (StringConstructor | NumberConstructor)[];
|
|
17537
17727
|
default: number;
|
|
@@ -17613,6 +17803,7 @@ declare const VColorPicker: {
|
|
|
17613
17803
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
17614
17804
|
default: undefined;
|
|
17615
17805
|
};
|
|
17806
|
+
tile: BooleanConstructor;
|
|
17616
17807
|
canvasHeight: {
|
|
17617
17808
|
type: (StringConstructor | NumberConstructor)[];
|
|
17618
17809
|
default: number;
|
|
@@ -17669,6 +17860,7 @@ declare const VColorPicker: {
|
|
|
17669
17860
|
tag: string;
|
|
17670
17861
|
mode: "rgb" | "rgba" | "hsl" | "hsla" | "hex" | "hexa";
|
|
17671
17862
|
rounded: string | number | boolean;
|
|
17863
|
+
tile: boolean;
|
|
17672
17864
|
dotSize: string | number;
|
|
17673
17865
|
modes: readonly ("rgb" | "rgba" | "hsl" | "hsla" | "hex" | "hexa")[];
|
|
17674
17866
|
canvasHeight: string | number;
|
|
@@ -17713,6 +17905,7 @@ declare const VColorPicker: {
|
|
|
17713
17905
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
17714
17906
|
default: undefined;
|
|
17715
17907
|
};
|
|
17908
|
+
tile: BooleanConstructor;
|
|
17716
17909
|
canvasHeight: {
|
|
17717
17910
|
type: (StringConstructor | NumberConstructor)[];
|
|
17718
17911
|
default: number;
|
|
@@ -17769,6 +17962,7 @@ declare const VColorPicker: {
|
|
|
17769
17962
|
tag: string;
|
|
17770
17963
|
mode: "rgb" | "rgba" | "hsl" | "hsla" | "hex" | "hexa";
|
|
17771
17964
|
rounded: string | number | boolean;
|
|
17965
|
+
tile: boolean;
|
|
17772
17966
|
dotSize: string | number;
|
|
17773
17967
|
modes: readonly ("rgb" | "rgba" | "hsl" | "hsla" | "hex" | "hexa")[];
|
|
17774
17968
|
canvasHeight: string | number;
|
|
@@ -17810,6 +18004,7 @@ declare const VColorPicker: {
|
|
|
17810
18004
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
17811
18005
|
default: undefined;
|
|
17812
18006
|
};
|
|
18007
|
+
tile: BooleanConstructor;
|
|
17813
18008
|
canvasHeight: {
|
|
17814
18009
|
type: (StringConstructor | NumberConstructor)[];
|
|
17815
18010
|
default: number;
|
|
@@ -17869,6 +18064,7 @@ declare const VColorPicker: {
|
|
|
17869
18064
|
tag: string;
|
|
17870
18065
|
mode: "rgb" | "rgba" | "hsl" | "hsla" | "hex" | "hexa";
|
|
17871
18066
|
rounded: string | number | boolean;
|
|
18067
|
+
tile: boolean;
|
|
17872
18068
|
dotSize: string | number;
|
|
17873
18069
|
modes: readonly ("rgb" | "rgba" | "hsl" | "hsla" | "hex" | "hexa")[];
|
|
17874
18070
|
canvasHeight: string | number;
|
|
@@ -17906,6 +18102,7 @@ declare const VColorPicker: {
|
|
|
17906
18102
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
17907
18103
|
default: undefined;
|
|
17908
18104
|
};
|
|
18105
|
+
tile: BooleanConstructor;
|
|
17909
18106
|
canvasHeight: {
|
|
17910
18107
|
type: (StringConstructor | NumberConstructor)[];
|
|
17911
18108
|
default: number;
|
|
@@ -17981,6 +18178,7 @@ declare const VColorPicker: {
|
|
|
17981
18178
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
17982
18179
|
default: undefined;
|
|
17983
18180
|
};
|
|
18181
|
+
tile: BooleanConstructor;
|
|
17984
18182
|
canvasHeight: {
|
|
17985
18183
|
type: (StringConstructor | NumberConstructor)[];
|
|
17986
18184
|
default: number;
|
|
@@ -18055,6 +18253,7 @@ declare const VCombobox: {
|
|
|
18055
18253
|
readonly: boolean | null;
|
|
18056
18254
|
noDataText: string;
|
|
18057
18255
|
messages: string | readonly string[];
|
|
18256
|
+
tile: boolean;
|
|
18058
18257
|
density: Density;
|
|
18059
18258
|
valueComparator: typeof deepEqual;
|
|
18060
18259
|
clearIcon: IconValue;
|
|
@@ -18123,6 +18322,7 @@ declare const VCombobox: {
|
|
|
18123
18322
|
tag: string;
|
|
18124
18323
|
mandatory: boolean;
|
|
18125
18324
|
rounded: string | number | boolean;
|
|
18325
|
+
tile: boolean;
|
|
18126
18326
|
density: Density;
|
|
18127
18327
|
slim: boolean;
|
|
18128
18328
|
valueComparator: typeof deepEqual;
|
|
@@ -18138,6 +18338,7 @@ declare const VCombobox: {
|
|
|
18138
18338
|
disabled: boolean;
|
|
18139
18339
|
tag: string;
|
|
18140
18340
|
mandatory: boolean;
|
|
18341
|
+
tile: boolean;
|
|
18141
18342
|
density: Density;
|
|
18142
18343
|
slim: boolean;
|
|
18143
18344
|
valueComparator: typeof deepEqual;
|
|
@@ -18181,6 +18382,7 @@ declare const VCombobox: {
|
|
|
18181
18382
|
disabled: boolean;
|
|
18182
18383
|
tag: string;
|
|
18183
18384
|
mandatory: boolean;
|
|
18385
|
+
tile: boolean;
|
|
18184
18386
|
density: Density;
|
|
18185
18387
|
slim: boolean;
|
|
18186
18388
|
valueComparator: typeof deepEqual;
|
|
@@ -18219,7 +18421,7 @@ declare const VCombobox: {
|
|
|
18219
18421
|
value: boolean;
|
|
18220
18422
|
path: unknown[];
|
|
18221
18423
|
}) => any) | undefined;
|
|
18222
|
-
}, "variant" | "nav" | "style" | "disabled" | "tag" | "mandatory" | "rounded" | "density" | "slim" | "valueComparator" | "selectStrategy" | "openStrategy" | "lines" | "returnObject" | "itemType"> & {
|
|
18424
|
+
}, "variant" | "nav" | "style" | "disabled" | "tag" | "mandatory" | "rounded" | "tile" | "density" | "slim" | "valueComparator" | "selectStrategy" | "openStrategy" | "lines" | "returnObject" | "itemType"> & {
|
|
18223
18425
|
items?: readonly any[] | undefined;
|
|
18224
18426
|
itemTitle?: SelectItemKey<any>;
|
|
18225
18427
|
itemValue?: SelectItemKey<any>;
|
|
@@ -18600,6 +18802,7 @@ declare const VCombobox: {
|
|
|
18600
18802
|
readonly: boolean | null;
|
|
18601
18803
|
noDataText: string;
|
|
18602
18804
|
messages: string | readonly string[];
|
|
18805
|
+
tile: boolean;
|
|
18603
18806
|
density: Density;
|
|
18604
18807
|
valueComparator: typeof deepEqual;
|
|
18605
18808
|
clearIcon: IconValue;
|
|
@@ -18668,6 +18871,7 @@ declare const VCombobox: {
|
|
|
18668
18871
|
tag: string;
|
|
18669
18872
|
mandatory: boolean;
|
|
18670
18873
|
rounded: string | number | boolean;
|
|
18874
|
+
tile: boolean;
|
|
18671
18875
|
density: Density;
|
|
18672
18876
|
slim: boolean;
|
|
18673
18877
|
valueComparator: typeof deepEqual;
|
|
@@ -18683,6 +18887,7 @@ declare const VCombobox: {
|
|
|
18683
18887
|
disabled: boolean;
|
|
18684
18888
|
tag: string;
|
|
18685
18889
|
mandatory: boolean;
|
|
18890
|
+
tile: boolean;
|
|
18686
18891
|
density: Density;
|
|
18687
18892
|
slim: boolean;
|
|
18688
18893
|
valueComparator: typeof deepEqual;
|
|
@@ -18726,6 +18931,7 @@ declare const VCombobox: {
|
|
|
18726
18931
|
disabled: boolean;
|
|
18727
18932
|
tag: string;
|
|
18728
18933
|
mandatory: boolean;
|
|
18934
|
+
tile: boolean;
|
|
18729
18935
|
density: Density;
|
|
18730
18936
|
slim: boolean;
|
|
18731
18937
|
valueComparator: typeof deepEqual;
|
|
@@ -18764,7 +18970,7 @@ declare const VCombobox: {
|
|
|
18764
18970
|
value: boolean;
|
|
18765
18971
|
path: unknown[];
|
|
18766
18972
|
}) => any) | undefined;
|
|
18767
|
-
}, "variant" | "nav" | "style" | "disabled" | "tag" | "mandatory" | "rounded" | "density" | "slim" | "valueComparator" | "selectStrategy" | "openStrategy" | "lines" | "returnObject" | "itemType"> & {
|
|
18973
|
+
}, "variant" | "nav" | "style" | "disabled" | "tag" | "mandatory" | "rounded" | "tile" | "density" | "slim" | "valueComparator" | "selectStrategy" | "openStrategy" | "lines" | "returnObject" | "itemType"> & {
|
|
18768
18974
|
items?: readonly any[] | undefined;
|
|
18769
18975
|
itemTitle?: SelectItemKey<any>;
|
|
18770
18976
|
itemValue?: SelectItemKey<any>;
|
|
@@ -19141,6 +19347,7 @@ declare const VCombobox: {
|
|
|
19141
19347
|
noDataText: string;
|
|
19142
19348
|
messages: string | readonly string[];
|
|
19143
19349
|
rounded: string | number | boolean;
|
|
19350
|
+
tile: boolean;
|
|
19144
19351
|
density: Density;
|
|
19145
19352
|
valueComparator: typeof deepEqual;
|
|
19146
19353
|
clearIcon: IconValue;
|
|
@@ -19256,6 +19463,7 @@ declare const VCombobox: {
|
|
|
19256
19463
|
readonly: boolean | null;
|
|
19257
19464
|
noDataText: string;
|
|
19258
19465
|
messages: string | readonly string[];
|
|
19466
|
+
tile: boolean;
|
|
19259
19467
|
density: Density;
|
|
19260
19468
|
valueComparator: typeof deepEqual;
|
|
19261
19469
|
clearIcon: IconValue;
|
|
@@ -19324,6 +19532,7 @@ declare const VCombobox: {
|
|
|
19324
19532
|
tag: string;
|
|
19325
19533
|
mandatory: boolean;
|
|
19326
19534
|
rounded: string | number | boolean;
|
|
19535
|
+
tile: boolean;
|
|
19327
19536
|
density: Density;
|
|
19328
19537
|
slim: boolean;
|
|
19329
19538
|
valueComparator: typeof deepEqual;
|
|
@@ -19339,6 +19548,7 @@ declare const VCombobox: {
|
|
|
19339
19548
|
disabled: boolean;
|
|
19340
19549
|
tag: string;
|
|
19341
19550
|
mandatory: boolean;
|
|
19551
|
+
tile: boolean;
|
|
19342
19552
|
density: Density;
|
|
19343
19553
|
slim: boolean;
|
|
19344
19554
|
valueComparator: typeof deepEqual;
|
|
@@ -19382,6 +19592,7 @@ declare const VCombobox: {
|
|
|
19382
19592
|
disabled: boolean;
|
|
19383
19593
|
tag: string;
|
|
19384
19594
|
mandatory: boolean;
|
|
19595
|
+
tile: boolean;
|
|
19385
19596
|
density: Density;
|
|
19386
19597
|
slim: boolean;
|
|
19387
19598
|
valueComparator: typeof deepEqual;
|
|
@@ -19420,7 +19631,7 @@ declare const VCombobox: {
|
|
|
19420
19631
|
value: boolean;
|
|
19421
19632
|
path: unknown[];
|
|
19422
19633
|
}) => any) | undefined;
|
|
19423
|
-
}, "variant" | "nav" | "style" | "disabled" | "tag" | "mandatory" | "rounded" | "density" | "slim" | "valueComparator" | "selectStrategy" | "openStrategy" | "lines" | "returnObject" | "itemType"> & {
|
|
19634
|
+
}, "variant" | "nav" | "style" | "disabled" | "tag" | "mandatory" | "rounded" | "tile" | "density" | "slim" | "valueComparator" | "selectStrategy" | "openStrategy" | "lines" | "returnObject" | "itemType"> & {
|
|
19424
19635
|
items?: readonly any[] | undefined;
|
|
19425
19636
|
itemTitle?: SelectItemKey<any>;
|
|
19426
19637
|
itemValue?: SelectItemKey<any>;
|
|
@@ -19797,6 +20008,7 @@ declare const VCombobox: {
|
|
|
19797
20008
|
noDataText: string;
|
|
19798
20009
|
messages: string | readonly string[];
|
|
19799
20010
|
rounded: string | number | boolean;
|
|
20011
|
+
tile: boolean;
|
|
19800
20012
|
density: Density;
|
|
19801
20013
|
valueComparator: typeof deepEqual;
|
|
19802
20014
|
clearIcon: IconValue;
|
|
@@ -19849,6 +20061,7 @@ declare const VCombobox: {
|
|
|
19849
20061
|
readonly: boolean | null;
|
|
19850
20062
|
noDataText: string;
|
|
19851
20063
|
messages: string | readonly string[];
|
|
20064
|
+
tile: boolean;
|
|
19852
20065
|
density: Density;
|
|
19853
20066
|
valueComparator: typeof deepEqual;
|
|
19854
20067
|
clearIcon: IconValue;
|
|
@@ -19917,6 +20130,7 @@ declare const VCombobox: {
|
|
|
19917
20130
|
tag: string;
|
|
19918
20131
|
mandatory: boolean;
|
|
19919
20132
|
rounded: string | number | boolean;
|
|
20133
|
+
tile: boolean;
|
|
19920
20134
|
density: Density;
|
|
19921
20135
|
slim: boolean;
|
|
19922
20136
|
valueComparator: typeof deepEqual;
|
|
@@ -19932,6 +20146,7 @@ declare const VCombobox: {
|
|
|
19932
20146
|
disabled: boolean;
|
|
19933
20147
|
tag: string;
|
|
19934
20148
|
mandatory: boolean;
|
|
20149
|
+
tile: boolean;
|
|
19935
20150
|
density: Density;
|
|
19936
20151
|
slim: boolean;
|
|
19937
20152
|
valueComparator: typeof deepEqual;
|
|
@@ -19975,6 +20190,7 @@ declare const VCombobox: {
|
|
|
19975
20190
|
disabled: boolean;
|
|
19976
20191
|
tag: string;
|
|
19977
20192
|
mandatory: boolean;
|
|
20193
|
+
tile: boolean;
|
|
19978
20194
|
density: Density;
|
|
19979
20195
|
slim: boolean;
|
|
19980
20196
|
valueComparator: typeof deepEqual;
|
|
@@ -20013,7 +20229,7 @@ declare const VCombobox: {
|
|
|
20013
20229
|
value: boolean;
|
|
20014
20230
|
path: unknown[];
|
|
20015
20231
|
}) => any) | undefined;
|
|
20016
|
-
}, "variant" | "nav" | "style" | "disabled" | "tag" | "mandatory" | "rounded" | "density" | "slim" | "valueComparator" | "selectStrategy" | "openStrategy" | "lines" | "returnObject" | "itemType"> & {
|
|
20232
|
+
}, "variant" | "nav" | "style" | "disabled" | "tag" | "mandatory" | "rounded" | "tile" | "density" | "slim" | "valueComparator" | "selectStrategy" | "openStrategy" | "lines" | "returnObject" | "itemType"> & {
|
|
20017
20233
|
items?: readonly any[] | undefined;
|
|
20018
20234
|
itemTitle?: SelectItemKey<any>;
|
|
20019
20235
|
itemValue?: SelectItemKey<any>;
|
|
@@ -20395,6 +20611,7 @@ declare const VCombobox: {
|
|
|
20395
20611
|
noDataText: string;
|
|
20396
20612
|
messages: string | readonly string[];
|
|
20397
20613
|
rounded: string | number | boolean;
|
|
20614
|
+
tile: boolean;
|
|
20398
20615
|
density: Density;
|
|
20399
20616
|
valueComparator: typeof deepEqual;
|
|
20400
20617
|
clearIcon: IconValue;
|
|
@@ -20605,6 +20822,7 @@ declare const VCombobox: {
|
|
|
20605
20822
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
20606
20823
|
default: undefined;
|
|
20607
20824
|
};
|
|
20825
|
+
tile: BooleanConstructor;
|
|
20608
20826
|
density: {
|
|
20609
20827
|
type: PropType<Density>;
|
|
20610
20828
|
default: string;
|
|
@@ -20715,6 +20933,7 @@ declare const VCombobox: {
|
|
|
20715
20933
|
tag: string;
|
|
20716
20934
|
mandatory: boolean;
|
|
20717
20935
|
rounded: string | number | boolean;
|
|
20936
|
+
tile: boolean;
|
|
20718
20937
|
density: Density;
|
|
20719
20938
|
slim: boolean;
|
|
20720
20939
|
valueComparator: typeof deepEqual;
|
|
@@ -20730,6 +20949,7 @@ declare const VCombobox: {
|
|
|
20730
20949
|
disabled: boolean;
|
|
20731
20950
|
tag: string;
|
|
20732
20951
|
mandatory: boolean;
|
|
20952
|
+
tile: boolean;
|
|
20733
20953
|
density: Density;
|
|
20734
20954
|
slim: boolean;
|
|
20735
20955
|
valueComparator: typeof deepEqual;
|
|
@@ -20773,6 +20993,7 @@ declare const VCombobox: {
|
|
|
20773
20993
|
disabled: boolean;
|
|
20774
20994
|
tag: string;
|
|
20775
20995
|
mandatory: boolean;
|
|
20996
|
+
tile: boolean;
|
|
20776
20997
|
density: Density;
|
|
20777
20998
|
slim: boolean;
|
|
20778
20999
|
valueComparator: typeof deepEqual;
|
|
@@ -20811,7 +21032,7 @@ declare const VCombobox: {
|
|
|
20811
21032
|
value: boolean;
|
|
20812
21033
|
path: unknown[];
|
|
20813
21034
|
}) => any) | undefined;
|
|
20814
|
-
}, "variant" | "nav" | "style" | "disabled" | "tag" | "mandatory" | "rounded" | "density" | "slim" | "valueComparator" | "selectStrategy" | "openStrategy" | "lines" | "returnObject" | "itemType"> & {
|
|
21035
|
+
}, "variant" | "nav" | "style" | "disabled" | "tag" | "mandatory" | "rounded" | "tile" | "density" | "slim" | "valueComparator" | "selectStrategy" | "openStrategy" | "lines" | "returnObject" | "itemType"> & {
|
|
20815
21036
|
items?: readonly any[] | undefined;
|
|
20816
21037
|
itemTitle?: SelectItemKey<any>;
|
|
20817
21038
|
itemValue?: SelectItemKey<any>;
|
|
@@ -21263,6 +21484,7 @@ declare const VCombobox: {
|
|
|
21263
21484
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
21264
21485
|
default: undefined;
|
|
21265
21486
|
};
|
|
21487
|
+
tile: BooleanConstructor;
|
|
21266
21488
|
density: {
|
|
21267
21489
|
type: PropType<Density>;
|
|
21268
21490
|
default: string;
|
|
@@ -21373,6 +21595,7 @@ declare const VCombobox: {
|
|
|
21373
21595
|
tag: string;
|
|
21374
21596
|
mandatory: boolean;
|
|
21375
21597
|
rounded: string | number | boolean;
|
|
21598
|
+
tile: boolean;
|
|
21376
21599
|
density: Density;
|
|
21377
21600
|
slim: boolean;
|
|
21378
21601
|
valueComparator: typeof deepEqual;
|
|
@@ -21388,6 +21611,7 @@ declare const VCombobox: {
|
|
|
21388
21611
|
disabled: boolean;
|
|
21389
21612
|
tag: string;
|
|
21390
21613
|
mandatory: boolean;
|
|
21614
|
+
tile: boolean;
|
|
21391
21615
|
density: Density;
|
|
21392
21616
|
slim: boolean;
|
|
21393
21617
|
valueComparator: typeof deepEqual;
|
|
@@ -21431,6 +21655,7 @@ declare const VCombobox: {
|
|
|
21431
21655
|
disabled: boolean;
|
|
21432
21656
|
tag: string;
|
|
21433
21657
|
mandatory: boolean;
|
|
21658
|
+
tile: boolean;
|
|
21434
21659
|
density: Density;
|
|
21435
21660
|
slim: boolean;
|
|
21436
21661
|
valueComparator: typeof deepEqual;
|
|
@@ -21469,7 +21694,7 @@ declare const VCombobox: {
|
|
|
21469
21694
|
value: boolean;
|
|
21470
21695
|
path: unknown[];
|
|
21471
21696
|
}) => any) | undefined;
|
|
21472
|
-
}, "variant" | "nav" | "style" | "disabled" | "tag" | "mandatory" | "rounded" | "density" | "slim" | "valueComparator" | "selectStrategy" | "openStrategy" | "lines" | "returnObject" | "itemType"> & {
|
|
21697
|
+
}, "variant" | "nav" | "style" | "disabled" | "tag" | "mandatory" | "rounded" | "tile" | "density" | "slim" | "valueComparator" | "selectStrategy" | "openStrategy" | "lines" | "returnObject" | "itemType"> & {
|
|
21473
21698
|
items?: readonly any[] | undefined;
|
|
21474
21699
|
itemTitle?: SelectItemKey<any>;
|
|
21475
21700
|
itemValue?: SelectItemKey<any>;
|
|
@@ -22141,9 +22366,9 @@ declare function provideSelection(props: SelectionProps, { allItems, currentPage
|
|
|
22141
22366
|
};
|
|
22142
22367
|
|
|
22143
22368
|
type DataTableCompareFunction<T = any> = (a: T, b: T) => number;
|
|
22144
|
-
type DataTableHeader = {
|
|
22369
|
+
type DataTableHeader<T = Record<string, any>> = {
|
|
22145
22370
|
key?: 'data-table-group' | 'data-table-select' | 'data-table-expand' | (string & {});
|
|
22146
|
-
value?: SelectItemKey
|
|
22371
|
+
value?: SelectItemKey<T>;
|
|
22147
22372
|
title?: string;
|
|
22148
22373
|
fixed?: boolean;
|
|
22149
22374
|
align?: 'start' | 'end' | 'center';
|
|
@@ -22156,7 +22381,7 @@ type DataTableHeader = {
|
|
|
22156
22381
|
sort?: DataTableCompareFunction;
|
|
22157
22382
|
sortRaw?: DataTableCompareFunction;
|
|
22158
22383
|
filter?: FilterFunction;
|
|
22159
|
-
children?: DataTableHeader[];
|
|
22384
|
+
children?: DataTableHeader<T>[];
|
|
22160
22385
|
};
|
|
22161
22386
|
type InternalDataTableHeader = Omit<DataTableHeader, 'key' | 'value' | 'children'> & {
|
|
22162
22387
|
key: string | null;
|
|
@@ -23166,27 +23391,6 @@ declare const VDataTable: {
|
|
|
23166
23391
|
color?: string | undefined;
|
|
23167
23392
|
loading?: string | boolean | undefined;
|
|
23168
23393
|
class?: any;
|
|
23169
|
-
headers?: readonly {
|
|
23170
|
-
readonly key?: (string & {}) | "data-table-group" | "data-table-select" | "data-table-expand" | undefined;
|
|
23171
|
-
readonly value?: SelectItemKey;
|
|
23172
|
-
readonly title?: string | undefined;
|
|
23173
|
-
readonly fixed?: boolean | undefined;
|
|
23174
|
-
readonly align?: "center" | "end" | "start" | undefined;
|
|
23175
|
-
readonly width?: string | number | undefined;
|
|
23176
|
-
readonly minWidth?: string | undefined;
|
|
23177
|
-
readonly maxWidth?: string | undefined;
|
|
23178
|
-
readonly headerProps?: {
|
|
23179
|
-
readonly [x: string]: any;
|
|
23180
|
-
} | undefined;
|
|
23181
|
-
readonly cellProps?: ((data: Pick<ItemKeySlot<any>, "index" | "item" | "value" | "internalItem">) => Record<string, any>) | {
|
|
23182
|
-
readonly [x: string]: any;
|
|
23183
|
-
} | undefined;
|
|
23184
|
-
readonly sortable?: boolean | undefined;
|
|
23185
|
-
readonly sort?: DataTableCompareFunction<any> | undefined;
|
|
23186
|
-
readonly sortRaw?: DataTableCompareFunction<any> | undefined;
|
|
23187
|
-
readonly filter?: FilterFunction | undefined;
|
|
23188
|
-
readonly children?: readonly any[] | undefined;
|
|
23189
|
-
}[] | undefined;
|
|
23190
23394
|
theme?: string | undefined;
|
|
23191
23395
|
customFilter?: FilterFunction | undefined;
|
|
23192
23396
|
customKeyFilter?: FilterKeyFunctions | undefined;
|
|
@@ -23210,7 +23414,7 @@ declare const VDataTable: {
|
|
|
23210
23414
|
'update:groupBy': (value: any) => boolean;
|
|
23211
23415
|
'update:expanded': (value: any) => boolean;
|
|
23212
23416
|
'update:currentItems': (value: any) => boolean;
|
|
23213
|
-
}, "$children" | "v-slot:default" | "v-slots" | "items" | "modelValue" | "update:modelValue" | "v-slot:loader" | "v-slot:item" | "itemValue" | "v-slot:no-data" | "cellProps" | "itemSelectable" | "rowProps" | "v-slot:headers" | `v-slot:header.${string}` | "v-slot:data-table-group" | "v-slot:data-table-select" | `v-slot:item.${string}` | "v-slot:loading" | "v-slot:group-header" | "v-slot:expanded-row" | "v-slot:top" | "v-slot:bottom" | "v-slot:body" | "v-slot:colgroup" | "v-slot:tbody" | "v-slot:tfoot" | "v-slot:thead" | "v-slot:body.prepend" | "v-slot:body.append" | "v-slot:footer.prepend">, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
|
23417
|
+
}, "$children" | "headers" | "v-slot:default" | "v-slots" | "items" | "modelValue" | "update:modelValue" | "v-slot:loader" | "v-slot:item" | "itemValue" | "v-slot:no-data" | "cellProps" | "itemSelectable" | "rowProps" | "v-slot:headers" | `v-slot:header.${string}` | "v-slot:data-table-group" | "v-slot:data-table-select" | `v-slot:item.${string}` | "v-slot:loading" | "v-slot:group-header" | "v-slot:expanded-row" | "v-slot:top" | "v-slot:bottom" | "v-slot:body" | "v-slot:colgroup" | "v-slot:tbody" | "v-slot:tfoot" | "v-slot:thead" | "v-slot:body.prepend" | "v-slot:body.append" | "v-slot:footer.prepend">, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
|
23214
23418
|
page: string | number;
|
|
23215
23419
|
style: vue.StyleValue;
|
|
23216
23420
|
expanded: readonly string[];
|
|
@@ -23260,27 +23464,6 @@ declare const VDataTable: {
|
|
|
23260
23464
|
color?: string | undefined;
|
|
23261
23465
|
loading?: string | boolean | undefined;
|
|
23262
23466
|
class?: any;
|
|
23263
|
-
headers?: readonly {
|
|
23264
|
-
readonly key?: (string & {}) | "data-table-group" | "data-table-select" | "data-table-expand" | undefined;
|
|
23265
|
-
readonly value?: SelectItemKey;
|
|
23266
|
-
readonly title?: string | undefined;
|
|
23267
|
-
readonly fixed?: boolean | undefined;
|
|
23268
|
-
readonly align?: "center" | "end" | "start" | undefined;
|
|
23269
|
-
readonly width?: string | number | undefined;
|
|
23270
|
-
readonly minWidth?: string | undefined;
|
|
23271
|
-
readonly maxWidth?: string | undefined;
|
|
23272
|
-
readonly headerProps?: {
|
|
23273
|
-
readonly [x: string]: any;
|
|
23274
|
-
} | undefined;
|
|
23275
|
-
readonly cellProps?: ((data: Pick<ItemKeySlot<any>, "index" | "item" | "value" | "internalItem">) => Record<string, any>) | {
|
|
23276
|
-
readonly [x: string]: any;
|
|
23277
|
-
} | undefined;
|
|
23278
|
-
readonly sortable?: boolean | undefined;
|
|
23279
|
-
readonly sort?: DataTableCompareFunction<any> | undefined;
|
|
23280
|
-
readonly sortRaw?: DataTableCompareFunction<any> | undefined;
|
|
23281
|
-
readonly filter?: FilterFunction | undefined;
|
|
23282
|
-
readonly children?: readonly any[] | undefined;
|
|
23283
|
-
}[] | undefined;
|
|
23284
23467
|
theme?: string | undefined;
|
|
23285
23468
|
customFilter?: FilterFunction | undefined;
|
|
23286
23469
|
customKeyFilter?: FilterKeyFunctions | undefined;
|
|
@@ -23519,27 +23702,6 @@ declare const VDataTable: {
|
|
|
23519
23702
|
color?: string | undefined;
|
|
23520
23703
|
loading?: string | boolean | undefined;
|
|
23521
23704
|
class?: any;
|
|
23522
|
-
headers?: readonly {
|
|
23523
|
-
readonly key?: (string & {}) | "data-table-group" | "data-table-select" | "data-table-expand" | undefined;
|
|
23524
|
-
readonly value?: SelectItemKey;
|
|
23525
|
-
readonly title?: string | undefined;
|
|
23526
|
-
readonly fixed?: boolean | undefined;
|
|
23527
|
-
readonly align?: "center" | "end" | "start" | undefined;
|
|
23528
|
-
readonly width?: string | number | undefined;
|
|
23529
|
-
readonly minWidth?: string | undefined;
|
|
23530
|
-
readonly maxWidth?: string | undefined;
|
|
23531
|
-
readonly headerProps?: {
|
|
23532
|
-
readonly [x: string]: any;
|
|
23533
|
-
} | undefined;
|
|
23534
|
-
readonly cellProps?: ((data: Pick<ItemKeySlot<any>, "index" | "item" | "value" | "internalItem">) => Record<string, any>) | {
|
|
23535
|
-
readonly [x: string]: any;
|
|
23536
|
-
} | undefined;
|
|
23537
|
-
readonly sortable?: boolean | undefined;
|
|
23538
|
-
readonly sort?: DataTableCompareFunction<any> | undefined;
|
|
23539
|
-
readonly sortRaw?: DataTableCompareFunction<any> | undefined;
|
|
23540
|
-
readonly filter?: FilterFunction | undefined;
|
|
23541
|
-
readonly children?: readonly any[] | undefined;
|
|
23542
|
-
}[] | undefined;
|
|
23543
23705
|
theme?: string | undefined;
|
|
23544
23706
|
customFilter?: FilterFunction | undefined;
|
|
23545
23707
|
customKeyFilter?: FilterKeyFunctions | undefined;
|
|
@@ -23651,27 +23813,6 @@ declare const VDataTable: {
|
|
|
23651
23813
|
color?: string | undefined;
|
|
23652
23814
|
loading?: string | boolean | undefined;
|
|
23653
23815
|
class?: any;
|
|
23654
|
-
headers?: readonly {
|
|
23655
|
-
readonly key?: (string & {}) | "data-table-group" | "data-table-select" | "data-table-expand" | undefined;
|
|
23656
|
-
readonly value?: SelectItemKey;
|
|
23657
|
-
readonly title?: string | undefined;
|
|
23658
|
-
readonly fixed?: boolean | undefined;
|
|
23659
|
-
readonly align?: "center" | "end" | "start" | undefined;
|
|
23660
|
-
readonly width?: string | number | undefined;
|
|
23661
|
-
readonly minWidth?: string | undefined;
|
|
23662
|
-
readonly maxWidth?: string | undefined;
|
|
23663
|
-
readonly headerProps?: {
|
|
23664
|
-
readonly [x: string]: any;
|
|
23665
|
-
} | undefined;
|
|
23666
|
-
readonly cellProps?: ((data: Pick<ItemKeySlot<any>, "index" | "item" | "value" | "internalItem">) => Record<string, any>) | {
|
|
23667
|
-
readonly [x: string]: any;
|
|
23668
|
-
} | undefined;
|
|
23669
|
-
readonly sortable?: boolean | undefined;
|
|
23670
|
-
readonly sort?: DataTableCompareFunction<any> | undefined;
|
|
23671
|
-
readonly sortRaw?: DataTableCompareFunction<any> | undefined;
|
|
23672
|
-
readonly filter?: FilterFunction | undefined;
|
|
23673
|
-
readonly children?: readonly any[] | undefined;
|
|
23674
|
-
}[] | undefined;
|
|
23675
23816
|
theme?: string | undefined;
|
|
23676
23817
|
customFilter?: FilterFunction | undefined;
|
|
23677
23818
|
customKeyFilter?: FilterKeyFunctions | undefined;
|
|
@@ -23695,7 +23836,7 @@ declare const VDataTable: {
|
|
|
23695
23836
|
'update:groupBy': (value: any) => boolean;
|
|
23696
23837
|
'update:expanded': (value: any) => boolean;
|
|
23697
23838
|
'update:currentItems': (value: any) => boolean;
|
|
23698
|
-
}, "$children" | "v-slot:default" | "v-slots" | "items" | "modelValue" | "update:modelValue" | "v-slot:loader" | "v-slot:item" | "itemValue" | "v-slot:no-data" | "cellProps" | "itemSelectable" | "rowProps" | "v-slot:headers" | `v-slot:header.${string}` | "v-slot:data-table-group" | "v-slot:data-table-select" | `v-slot:item.${string}` | "v-slot:loading" | "v-slot:group-header" | "v-slot:expanded-row" | "v-slot:top" | "v-slot:bottom" | "v-slot:body" | "v-slot:colgroup" | "v-slot:tbody" | "v-slot:tfoot" | "v-slot:thead" | "v-slot:body.prepend" | "v-slot:body.append" | "v-slot:footer.prepend">, string, {
|
|
23839
|
+
}, "$children" | "headers" | "v-slot:default" | "v-slots" | "items" | "modelValue" | "update:modelValue" | "v-slot:loader" | "v-slot:item" | "itemValue" | "v-slot:no-data" | "cellProps" | "itemSelectable" | "rowProps" | "v-slot:headers" | `v-slot:header.${string}` | "v-slot:data-table-group" | "v-slot:data-table-select" | `v-slot:item.${string}` | "v-slot:loading" | "v-slot:group-header" | "v-slot:expanded-row" | "v-slot:top" | "v-slot:bottom" | "v-slot:body" | "v-slot:colgroup" | "v-slot:tbody" | "v-slot:tfoot" | "v-slot:thead" | "v-slot:body.prepend" | "v-slot:body.append" | "v-slot:footer.prepend">, string, {
|
|
23699
23840
|
page: string | number;
|
|
23700
23841
|
style: vue.StyleValue;
|
|
23701
23842
|
expanded: readonly string[];
|
|
@@ -23868,6 +24009,27 @@ declare const VDataTable: {
|
|
|
23868
24009
|
rowProps?: RowProps<ItemType$4<T>> | undefined;
|
|
23869
24010
|
cellProps?: CellProps<ItemType$4<T>> | undefined;
|
|
23870
24011
|
itemSelectable?: SelectItemKey<ItemType$4<T>>;
|
|
24012
|
+
headers?: readonly {
|
|
24013
|
+
readonly key?: (string & {}) | "data-table-group" | "data-table-select" | "data-table-expand" | undefined;
|
|
24014
|
+
readonly value?: SelectItemKey<ItemType$4<T>>;
|
|
24015
|
+
readonly title?: string | undefined;
|
|
24016
|
+
readonly fixed?: boolean | undefined;
|
|
24017
|
+
readonly align?: "center" | "end" | "start" | undefined;
|
|
24018
|
+
readonly width?: string | number | undefined;
|
|
24019
|
+
readonly minWidth?: string | undefined;
|
|
24020
|
+
readonly maxWidth?: string | undefined;
|
|
24021
|
+
readonly headerProps?: {
|
|
24022
|
+
readonly [x: string]: any;
|
|
24023
|
+
} | undefined;
|
|
24024
|
+
readonly cellProps?: ((data: Pick<ItemKeySlot<any>, "index" | "item" | "value" | "internalItem">) => Record<string, any>) | {
|
|
24025
|
+
readonly [x: string]: any;
|
|
24026
|
+
} | undefined;
|
|
24027
|
+
readonly sortable?: boolean | undefined;
|
|
24028
|
+
readonly sort?: DataTableCompareFunction<any> | undefined;
|
|
24029
|
+
readonly sortRaw?: DataTableCompareFunction<any> | undefined;
|
|
24030
|
+
readonly filter?: FilterFunction | undefined;
|
|
24031
|
+
readonly children?: readonly any[] | undefined;
|
|
24032
|
+
}[] | undefined;
|
|
23871
24033
|
modelValue?: V | undefined;
|
|
23872
24034
|
'onUpdate:modelValue'?: ((value: V) => void) | undefined;
|
|
23873
24035
|
}, slots: VDataTableSlots<ItemType$4<T>>) => GenericProps<{
|
|
@@ -23876,6 +24038,27 @@ declare const VDataTable: {
|
|
|
23876
24038
|
rowProps?: RowProps<ItemType$4<T>> | undefined;
|
|
23877
24039
|
cellProps?: CellProps<ItemType$4<T>> | undefined;
|
|
23878
24040
|
itemSelectable?: SelectItemKey<ItemType$4<T>>;
|
|
24041
|
+
headers?: readonly {
|
|
24042
|
+
readonly key?: (string & {}) | "data-table-group" | "data-table-select" | "data-table-expand" | undefined;
|
|
24043
|
+
readonly value?: SelectItemKey<ItemType$4<T>>;
|
|
24044
|
+
readonly title?: string | undefined;
|
|
24045
|
+
readonly fixed?: boolean | undefined;
|
|
24046
|
+
readonly align?: "center" | "end" | "start" | undefined;
|
|
24047
|
+
readonly width?: string | number | undefined;
|
|
24048
|
+
readonly minWidth?: string | undefined;
|
|
24049
|
+
readonly maxWidth?: string | undefined;
|
|
24050
|
+
readonly headerProps?: {
|
|
24051
|
+
readonly [x: string]: any;
|
|
24052
|
+
} | undefined;
|
|
24053
|
+
readonly cellProps?: ((data: Pick<ItemKeySlot<any>, "index" | "item" | "value" | "internalItem">) => Record<string, any>) | {
|
|
24054
|
+
readonly [x: string]: any;
|
|
24055
|
+
} | undefined;
|
|
24056
|
+
readonly sortable?: boolean | undefined;
|
|
24057
|
+
readonly sort?: DataTableCompareFunction<any> | undefined;
|
|
24058
|
+
readonly sortRaw?: DataTableCompareFunction<any> | undefined;
|
|
24059
|
+
readonly filter?: FilterFunction | undefined;
|
|
24060
|
+
readonly children?: readonly any[] | undefined;
|
|
24061
|
+
}[] | undefined;
|
|
23879
24062
|
modelValue?: V | undefined;
|
|
23880
24063
|
'onUpdate:modelValue'?: ((value: V) => void) | undefined;
|
|
23881
24064
|
}, VDataTableSlots<ItemType$4<T>>>) & FilterPropsOptions<{
|
|
@@ -24008,7 +24191,7 @@ declare const VDataTable: {
|
|
|
24008
24191
|
returnObject: BooleanConstructor;
|
|
24009
24192
|
headers: vue.PropType<readonly {
|
|
24010
24193
|
readonly key?: (string & {}) | "data-table-group" | "data-table-select" | "data-table-expand" | undefined;
|
|
24011
|
-
readonly value?: SelectItemKey
|
|
24194
|
+
readonly value?: SelectItemKey<Record<string, any>>;
|
|
24012
24195
|
readonly title?: string | undefined;
|
|
24013
24196
|
readonly fixed?: boolean | undefined;
|
|
24014
24197
|
readonly align?: "center" | "end" | "start" | undefined;
|
|
@@ -24025,7 +24208,27 @@ declare const VDataTable: {
|
|
|
24025
24208
|
readonly sort?: DataTableCompareFunction<any> | undefined;
|
|
24026
24209
|
readonly sortRaw?: DataTableCompareFunction<any> | undefined;
|
|
24027
24210
|
readonly filter?: FilterFunction | undefined;
|
|
24028
|
-
readonly children?: readonly
|
|
24211
|
+
readonly children?: readonly {
|
|
24212
|
+
readonly key?: (string & {}) | "data-table-group" | "data-table-select" | "data-table-expand" | undefined;
|
|
24213
|
+
readonly value?: SelectItemKey<Record<string, any>>;
|
|
24214
|
+
readonly title?: string | undefined;
|
|
24215
|
+
readonly fixed?: boolean | undefined;
|
|
24216
|
+
readonly align?: "center" | "end" | "start" | undefined;
|
|
24217
|
+
readonly width?: string | number | undefined;
|
|
24218
|
+
readonly minWidth?: string | undefined;
|
|
24219
|
+
readonly maxWidth?: string | undefined;
|
|
24220
|
+
readonly headerProps?: {
|
|
24221
|
+
readonly [x: string]: any;
|
|
24222
|
+
} | undefined;
|
|
24223
|
+
readonly cellProps?: ((data: Pick<ItemKeySlot<any>, "index" | "item" | "value" | "internalItem">) => Record<string, any>) | {
|
|
24224
|
+
readonly [x: string]: any;
|
|
24225
|
+
} | undefined;
|
|
24226
|
+
readonly sortable?: boolean | undefined;
|
|
24227
|
+
readonly sort?: DataTableCompareFunction<any> | undefined;
|
|
24228
|
+
readonly sortRaw?: DataTableCompareFunction<any> | undefined;
|
|
24229
|
+
readonly filter?: FilterFunction | undefined;
|
|
24230
|
+
readonly children?: readonly any[] | undefined;
|
|
24231
|
+
}[] | undefined;
|
|
24029
24232
|
}[]>;
|
|
24030
24233
|
groupBy: {
|
|
24031
24234
|
type: vue.PropType<readonly SortItem[]>;
|
|
@@ -24186,7 +24389,7 @@ declare const VDataTable: {
|
|
|
24186
24389
|
returnObject: BooleanConstructor;
|
|
24187
24390
|
headers: vue.PropType<readonly {
|
|
24188
24391
|
readonly key?: (string & {}) | "data-table-group" | "data-table-select" | "data-table-expand" | undefined;
|
|
24189
|
-
readonly value?: SelectItemKey
|
|
24392
|
+
readonly value?: SelectItemKey<Record<string, any>>;
|
|
24190
24393
|
readonly title?: string | undefined;
|
|
24191
24394
|
readonly fixed?: boolean | undefined;
|
|
24192
24395
|
readonly align?: "center" | "end" | "start" | undefined;
|
|
@@ -24203,7 +24406,27 @@ declare const VDataTable: {
|
|
|
24203
24406
|
readonly sort?: DataTableCompareFunction<any> | undefined;
|
|
24204
24407
|
readonly sortRaw?: DataTableCompareFunction<any> | undefined;
|
|
24205
24408
|
readonly filter?: FilterFunction | undefined;
|
|
24206
|
-
readonly children?: readonly
|
|
24409
|
+
readonly children?: readonly {
|
|
24410
|
+
readonly key?: (string & {}) | "data-table-group" | "data-table-select" | "data-table-expand" | undefined;
|
|
24411
|
+
readonly value?: SelectItemKey<Record<string, any>>;
|
|
24412
|
+
readonly title?: string | undefined;
|
|
24413
|
+
readonly fixed?: boolean | undefined;
|
|
24414
|
+
readonly align?: "center" | "end" | "start" | undefined;
|
|
24415
|
+
readonly width?: string | number | undefined;
|
|
24416
|
+
readonly minWidth?: string | undefined;
|
|
24417
|
+
readonly maxWidth?: string | undefined;
|
|
24418
|
+
readonly headerProps?: {
|
|
24419
|
+
readonly [x: string]: any;
|
|
24420
|
+
} | undefined;
|
|
24421
|
+
readonly cellProps?: ((data: Pick<ItemKeySlot<any>, "index" | "item" | "value" | "internalItem">) => Record<string, any>) | {
|
|
24422
|
+
readonly [x: string]: any;
|
|
24423
|
+
} | undefined;
|
|
24424
|
+
readonly sortable?: boolean | undefined;
|
|
24425
|
+
readonly sort?: DataTableCompareFunction<any> | undefined;
|
|
24426
|
+
readonly sortRaw?: DataTableCompareFunction<any> | undefined;
|
|
24427
|
+
readonly filter?: FilterFunction | undefined;
|
|
24428
|
+
readonly children?: readonly any[] | undefined;
|
|
24429
|
+
}[] | undefined;
|
|
24207
24430
|
}[]>;
|
|
24208
24431
|
groupBy: {
|
|
24209
24432
|
type: vue.PropType<readonly SortItem[]>;
|
|
@@ -24561,7 +24784,7 @@ declare const VDataTableVirtual: {
|
|
|
24561
24784
|
class?: any;
|
|
24562
24785
|
headers?: readonly {
|
|
24563
24786
|
readonly key?: (string & {}) | "data-table-group" | "data-table-select" | "data-table-expand" | undefined;
|
|
24564
|
-
readonly value?: SelectItemKey
|
|
24787
|
+
readonly value?: SelectItemKey<Record<string, any>>;
|
|
24565
24788
|
readonly title?: string | undefined;
|
|
24566
24789
|
readonly fixed?: boolean | undefined;
|
|
24567
24790
|
readonly align?: "center" | "end" | "start" | undefined;
|
|
@@ -24578,7 +24801,27 @@ declare const VDataTableVirtual: {
|
|
|
24578
24801
|
readonly sort?: DataTableCompareFunction<any> | undefined;
|
|
24579
24802
|
readonly sortRaw?: DataTableCompareFunction<any> | undefined;
|
|
24580
24803
|
readonly filter?: FilterFunction | undefined;
|
|
24581
|
-
readonly children?: readonly
|
|
24804
|
+
readonly children?: readonly {
|
|
24805
|
+
readonly key?: (string & {}) | "data-table-group" | "data-table-select" | "data-table-expand" | undefined;
|
|
24806
|
+
readonly value?: SelectItemKey<Record<string, any>>;
|
|
24807
|
+
readonly title?: string | undefined;
|
|
24808
|
+
readonly fixed?: boolean | undefined;
|
|
24809
|
+
readonly align?: "center" | "end" | "start" | undefined;
|
|
24810
|
+
readonly width?: string | number | undefined;
|
|
24811
|
+
readonly minWidth?: string | undefined;
|
|
24812
|
+
readonly maxWidth?: string | undefined;
|
|
24813
|
+
readonly headerProps?: {
|
|
24814
|
+
readonly [x: string]: any;
|
|
24815
|
+
} | undefined;
|
|
24816
|
+
readonly cellProps?: ((data: Pick<ItemKeySlot<any>, "index" | "item" | "value" | "internalItem">) => Record<string, any>) | {
|
|
24817
|
+
readonly [x: string]: any;
|
|
24818
|
+
} | undefined;
|
|
24819
|
+
readonly sortable?: boolean | undefined;
|
|
24820
|
+
readonly sort?: DataTableCompareFunction<any> | undefined;
|
|
24821
|
+
readonly sortRaw?: DataTableCompareFunction<any> | undefined;
|
|
24822
|
+
readonly filter?: FilterFunction | undefined;
|
|
24823
|
+
readonly children?: readonly any[] | undefined;
|
|
24824
|
+
}[] | undefined;
|
|
24582
24825
|
}[] | undefined;
|
|
24583
24826
|
theme?: string | undefined;
|
|
24584
24827
|
customFilter?: FilterFunction | undefined;
|
|
@@ -24633,7 +24876,7 @@ declare const VDataTableVirtual: {
|
|
|
24633
24876
|
class?: any;
|
|
24634
24877
|
headers?: readonly {
|
|
24635
24878
|
readonly key?: (string & {}) | "data-table-group" | "data-table-select" | "data-table-expand" | undefined;
|
|
24636
|
-
readonly value?: SelectItemKey
|
|
24879
|
+
readonly value?: SelectItemKey<Record<string, any>>;
|
|
24637
24880
|
readonly title?: string | undefined;
|
|
24638
24881
|
readonly fixed?: boolean | undefined;
|
|
24639
24882
|
readonly align?: "center" | "end" | "start" | undefined;
|
|
@@ -24650,7 +24893,27 @@ declare const VDataTableVirtual: {
|
|
|
24650
24893
|
readonly sort?: DataTableCompareFunction<any> | undefined;
|
|
24651
24894
|
readonly sortRaw?: DataTableCompareFunction<any> | undefined;
|
|
24652
24895
|
readonly filter?: FilterFunction | undefined;
|
|
24653
|
-
readonly children?: readonly
|
|
24896
|
+
readonly children?: readonly {
|
|
24897
|
+
readonly key?: (string & {}) | "data-table-group" | "data-table-select" | "data-table-expand" | undefined;
|
|
24898
|
+
readonly value?: SelectItemKey<Record<string, any>>;
|
|
24899
|
+
readonly title?: string | undefined;
|
|
24900
|
+
readonly fixed?: boolean | undefined;
|
|
24901
|
+
readonly align?: "center" | "end" | "start" | undefined;
|
|
24902
|
+
readonly width?: string | number | undefined;
|
|
24903
|
+
readonly minWidth?: string | undefined;
|
|
24904
|
+
readonly maxWidth?: string | undefined;
|
|
24905
|
+
readonly headerProps?: {
|
|
24906
|
+
readonly [x: string]: any;
|
|
24907
|
+
} | undefined;
|
|
24908
|
+
readonly cellProps?: ((data: Pick<ItemKeySlot<any>, "index" | "item" | "value" | "internalItem">) => Record<string, any>) | {
|
|
24909
|
+
readonly [x: string]: any;
|
|
24910
|
+
} | undefined;
|
|
24911
|
+
readonly sortable?: boolean | undefined;
|
|
24912
|
+
readonly sort?: DataTableCompareFunction<any> | undefined;
|
|
24913
|
+
readonly sortRaw?: DataTableCompareFunction<any> | undefined;
|
|
24914
|
+
readonly filter?: FilterFunction | undefined;
|
|
24915
|
+
readonly children?: readonly any[] | undefined;
|
|
24916
|
+
}[] | undefined;
|
|
24654
24917
|
}[] | undefined;
|
|
24655
24918
|
theme?: string | undefined;
|
|
24656
24919
|
customFilter?: FilterFunction | undefined;
|
|
@@ -24841,7 +25104,7 @@ declare const VDataTableVirtual: {
|
|
|
24841
25104
|
class?: any;
|
|
24842
25105
|
headers?: readonly {
|
|
24843
25106
|
readonly key?: (string & {}) | "data-table-group" | "data-table-select" | "data-table-expand" | undefined;
|
|
24844
|
-
readonly value?: SelectItemKey
|
|
25107
|
+
readonly value?: SelectItemKey<Record<string, any>>;
|
|
24845
25108
|
readonly title?: string | undefined;
|
|
24846
25109
|
readonly fixed?: boolean | undefined;
|
|
24847
25110
|
readonly align?: "center" | "end" | "start" | undefined;
|
|
@@ -24858,7 +25121,27 @@ declare const VDataTableVirtual: {
|
|
|
24858
25121
|
readonly sort?: DataTableCompareFunction<any> | undefined;
|
|
24859
25122
|
readonly sortRaw?: DataTableCompareFunction<any> | undefined;
|
|
24860
25123
|
readonly filter?: FilterFunction | undefined;
|
|
24861
|
-
readonly children?: readonly
|
|
25124
|
+
readonly children?: readonly {
|
|
25125
|
+
readonly key?: (string & {}) | "data-table-group" | "data-table-select" | "data-table-expand" | undefined;
|
|
25126
|
+
readonly value?: SelectItemKey<Record<string, any>>;
|
|
25127
|
+
readonly title?: string | undefined;
|
|
25128
|
+
readonly fixed?: boolean | undefined;
|
|
25129
|
+
readonly align?: "center" | "end" | "start" | undefined;
|
|
25130
|
+
readonly width?: string | number | undefined;
|
|
25131
|
+
readonly minWidth?: string | undefined;
|
|
25132
|
+
readonly maxWidth?: string | undefined;
|
|
25133
|
+
readonly headerProps?: {
|
|
25134
|
+
readonly [x: string]: any;
|
|
25135
|
+
} | undefined;
|
|
25136
|
+
readonly cellProps?: ((data: Pick<ItemKeySlot<any>, "index" | "item" | "value" | "internalItem">) => Record<string, any>) | {
|
|
25137
|
+
readonly [x: string]: any;
|
|
25138
|
+
} | undefined;
|
|
25139
|
+
readonly sortable?: boolean | undefined;
|
|
25140
|
+
readonly sort?: DataTableCompareFunction<any> | undefined;
|
|
25141
|
+
readonly sortRaw?: DataTableCompareFunction<any> | undefined;
|
|
25142
|
+
readonly filter?: FilterFunction | undefined;
|
|
25143
|
+
readonly children?: readonly any[] | undefined;
|
|
25144
|
+
}[] | undefined;
|
|
24862
25145
|
}[] | undefined;
|
|
24863
25146
|
theme?: string | undefined;
|
|
24864
25147
|
customFilter?: FilterFunction | undefined;
|
|
@@ -24938,7 +25221,7 @@ declare const VDataTableVirtual: {
|
|
|
24938
25221
|
class?: any;
|
|
24939
25222
|
headers?: readonly {
|
|
24940
25223
|
readonly key?: (string & {}) | "data-table-group" | "data-table-select" | "data-table-expand" | undefined;
|
|
24941
|
-
readonly value?: SelectItemKey
|
|
25224
|
+
readonly value?: SelectItemKey<Record<string, any>>;
|
|
24942
25225
|
readonly title?: string | undefined;
|
|
24943
25226
|
readonly fixed?: boolean | undefined;
|
|
24944
25227
|
readonly align?: "center" | "end" | "start" | undefined;
|
|
@@ -24955,7 +25238,27 @@ declare const VDataTableVirtual: {
|
|
|
24955
25238
|
readonly sort?: DataTableCompareFunction<any> | undefined;
|
|
24956
25239
|
readonly sortRaw?: DataTableCompareFunction<any> | undefined;
|
|
24957
25240
|
readonly filter?: FilterFunction | undefined;
|
|
24958
|
-
readonly children?: readonly
|
|
25241
|
+
readonly children?: readonly {
|
|
25242
|
+
readonly key?: (string & {}) | "data-table-group" | "data-table-select" | "data-table-expand" | undefined;
|
|
25243
|
+
readonly value?: SelectItemKey<Record<string, any>>;
|
|
25244
|
+
readonly title?: string | undefined;
|
|
25245
|
+
readonly fixed?: boolean | undefined;
|
|
25246
|
+
readonly align?: "center" | "end" | "start" | undefined;
|
|
25247
|
+
readonly width?: string | number | undefined;
|
|
25248
|
+
readonly minWidth?: string | undefined;
|
|
25249
|
+
readonly maxWidth?: string | undefined;
|
|
25250
|
+
readonly headerProps?: {
|
|
25251
|
+
readonly [x: string]: any;
|
|
25252
|
+
} | undefined;
|
|
25253
|
+
readonly cellProps?: ((data: Pick<ItemKeySlot<any>, "index" | "item" | "value" | "internalItem">) => Record<string, any>) | {
|
|
25254
|
+
readonly [x: string]: any;
|
|
25255
|
+
} | undefined;
|
|
25256
|
+
readonly sortable?: boolean | undefined;
|
|
25257
|
+
readonly sort?: DataTableCompareFunction<any> | undefined;
|
|
25258
|
+
readonly sortRaw?: DataTableCompareFunction<any> | undefined;
|
|
25259
|
+
readonly filter?: FilterFunction | undefined;
|
|
25260
|
+
readonly children?: readonly any[] | undefined;
|
|
25261
|
+
}[] | undefined;
|
|
24959
25262
|
}[] | undefined;
|
|
24960
25263
|
theme?: string | undefined;
|
|
24961
25264
|
customFilter?: FilterFunction | undefined;
|
|
@@ -25212,7 +25515,7 @@ declare const VDataTableVirtual: {
|
|
|
25212
25515
|
returnObject: BooleanConstructor;
|
|
25213
25516
|
headers: vue.PropType<readonly {
|
|
25214
25517
|
readonly key?: (string & {}) | "data-table-group" | "data-table-select" | "data-table-expand" | undefined;
|
|
25215
|
-
readonly value?: SelectItemKey
|
|
25518
|
+
readonly value?: SelectItemKey<Record<string, any>>;
|
|
25216
25519
|
readonly title?: string | undefined;
|
|
25217
25520
|
readonly fixed?: boolean | undefined;
|
|
25218
25521
|
readonly align?: "center" | "end" | "start" | undefined;
|
|
@@ -25229,7 +25532,27 @@ declare const VDataTableVirtual: {
|
|
|
25229
25532
|
readonly sort?: DataTableCompareFunction<any> | undefined;
|
|
25230
25533
|
readonly sortRaw?: DataTableCompareFunction<any> | undefined;
|
|
25231
25534
|
readonly filter?: FilterFunction | undefined;
|
|
25232
|
-
readonly children?: readonly
|
|
25535
|
+
readonly children?: readonly {
|
|
25536
|
+
readonly key?: (string & {}) | "data-table-group" | "data-table-select" | "data-table-expand" | undefined;
|
|
25537
|
+
readonly value?: SelectItemKey<Record<string, any>>;
|
|
25538
|
+
readonly title?: string | undefined;
|
|
25539
|
+
readonly fixed?: boolean | undefined;
|
|
25540
|
+
readonly align?: "center" | "end" | "start" | undefined;
|
|
25541
|
+
readonly width?: string | number | undefined;
|
|
25542
|
+
readonly minWidth?: string | undefined;
|
|
25543
|
+
readonly maxWidth?: string | undefined;
|
|
25544
|
+
readonly headerProps?: {
|
|
25545
|
+
readonly [x: string]: any;
|
|
25546
|
+
} | undefined;
|
|
25547
|
+
readonly cellProps?: ((data: Pick<ItemKeySlot<any>, "index" | "item" | "value" | "internalItem">) => Record<string, any>) | {
|
|
25548
|
+
readonly [x: string]: any;
|
|
25549
|
+
} | undefined;
|
|
25550
|
+
readonly sortable?: boolean | undefined;
|
|
25551
|
+
readonly sort?: DataTableCompareFunction<any> | undefined;
|
|
25552
|
+
readonly sortRaw?: DataTableCompareFunction<any> | undefined;
|
|
25553
|
+
readonly filter?: FilterFunction | undefined;
|
|
25554
|
+
readonly children?: readonly any[] | undefined;
|
|
25555
|
+
}[] | undefined;
|
|
25233
25556
|
}[]>;
|
|
25234
25557
|
expandOnClick: BooleanConstructor;
|
|
25235
25558
|
showExpand: BooleanConstructor;
|
|
@@ -25335,7 +25658,7 @@ declare const VDataTableVirtual: {
|
|
|
25335
25658
|
returnObject: BooleanConstructor;
|
|
25336
25659
|
headers: vue.PropType<readonly {
|
|
25337
25660
|
readonly key?: (string & {}) | "data-table-group" | "data-table-select" | "data-table-expand" | undefined;
|
|
25338
|
-
readonly value?: SelectItemKey
|
|
25661
|
+
readonly value?: SelectItemKey<Record<string, any>>;
|
|
25339
25662
|
readonly title?: string | undefined;
|
|
25340
25663
|
readonly fixed?: boolean | undefined;
|
|
25341
25664
|
readonly align?: "center" | "end" | "start" | undefined;
|
|
@@ -25352,7 +25675,27 @@ declare const VDataTableVirtual: {
|
|
|
25352
25675
|
readonly sort?: DataTableCompareFunction<any> | undefined;
|
|
25353
25676
|
readonly sortRaw?: DataTableCompareFunction<any> | undefined;
|
|
25354
25677
|
readonly filter?: FilterFunction | undefined;
|
|
25355
|
-
readonly children?: readonly
|
|
25678
|
+
readonly children?: readonly {
|
|
25679
|
+
readonly key?: (string & {}) | "data-table-group" | "data-table-select" | "data-table-expand" | undefined;
|
|
25680
|
+
readonly value?: SelectItemKey<Record<string, any>>;
|
|
25681
|
+
readonly title?: string | undefined;
|
|
25682
|
+
readonly fixed?: boolean | undefined;
|
|
25683
|
+
readonly align?: "center" | "end" | "start" | undefined;
|
|
25684
|
+
readonly width?: string | number | undefined;
|
|
25685
|
+
readonly minWidth?: string | undefined;
|
|
25686
|
+
readonly maxWidth?: string | undefined;
|
|
25687
|
+
readonly headerProps?: {
|
|
25688
|
+
readonly [x: string]: any;
|
|
25689
|
+
} | undefined;
|
|
25690
|
+
readonly cellProps?: ((data: Pick<ItemKeySlot<any>, "index" | "item" | "value" | "internalItem">) => Record<string, any>) | {
|
|
25691
|
+
readonly [x: string]: any;
|
|
25692
|
+
} | undefined;
|
|
25693
|
+
readonly sortable?: boolean | undefined;
|
|
25694
|
+
readonly sort?: DataTableCompareFunction<any> | undefined;
|
|
25695
|
+
readonly sortRaw?: DataTableCompareFunction<any> | undefined;
|
|
25696
|
+
readonly filter?: FilterFunction | undefined;
|
|
25697
|
+
readonly children?: readonly any[] | undefined;
|
|
25698
|
+
}[] | undefined;
|
|
25356
25699
|
}[]>;
|
|
25357
25700
|
expandOnClick: BooleanConstructor;
|
|
25358
25701
|
showExpand: BooleanConstructor;
|
|
@@ -25427,7 +25770,7 @@ declare const VDataTableServer: {
|
|
|
25427
25770
|
class?: any;
|
|
25428
25771
|
headers?: readonly {
|
|
25429
25772
|
readonly key?: (string & {}) | "data-table-group" | "data-table-select" | "data-table-expand" | undefined;
|
|
25430
|
-
readonly value?: SelectItemKey
|
|
25773
|
+
readonly value?: SelectItemKey<Record<string, any>>;
|
|
25431
25774
|
readonly title?: string | undefined;
|
|
25432
25775
|
readonly fixed?: boolean | undefined;
|
|
25433
25776
|
readonly align?: "center" | "end" | "start" | undefined;
|
|
@@ -25444,7 +25787,27 @@ declare const VDataTableServer: {
|
|
|
25444
25787
|
readonly sort?: DataTableCompareFunction<any> | undefined;
|
|
25445
25788
|
readonly sortRaw?: DataTableCompareFunction<any> | undefined;
|
|
25446
25789
|
readonly filter?: FilterFunction | undefined;
|
|
25447
|
-
readonly children?: readonly
|
|
25790
|
+
readonly children?: readonly {
|
|
25791
|
+
readonly key?: (string & {}) | "data-table-group" | "data-table-select" | "data-table-expand" | undefined;
|
|
25792
|
+
readonly value?: SelectItemKey<Record<string, any>>;
|
|
25793
|
+
readonly title?: string | undefined;
|
|
25794
|
+
readonly fixed?: boolean | undefined;
|
|
25795
|
+
readonly align?: "center" | "end" | "start" | undefined;
|
|
25796
|
+
readonly width?: string | number | undefined;
|
|
25797
|
+
readonly minWidth?: string | undefined;
|
|
25798
|
+
readonly maxWidth?: string | undefined;
|
|
25799
|
+
readonly headerProps?: {
|
|
25800
|
+
readonly [x: string]: any;
|
|
25801
|
+
} | undefined;
|
|
25802
|
+
readonly cellProps?: ((data: Pick<ItemKeySlot<any>, "index" | "item" | "value" | "internalItem">) => Record<string, any>) | {
|
|
25803
|
+
readonly [x: string]: any;
|
|
25804
|
+
} | undefined;
|
|
25805
|
+
readonly sortable?: boolean | undefined;
|
|
25806
|
+
readonly sort?: DataTableCompareFunction<any> | undefined;
|
|
25807
|
+
readonly sortRaw?: DataTableCompareFunction<any> | undefined;
|
|
25808
|
+
readonly filter?: FilterFunction | undefined;
|
|
25809
|
+
readonly children?: readonly any[] | undefined;
|
|
25810
|
+
}[] | undefined;
|
|
25448
25811
|
}[] | undefined;
|
|
25449
25812
|
theme?: string | undefined;
|
|
25450
25813
|
customKeySort?: Record<string, DataTableCompareFunction> | undefined;
|
|
@@ -25515,7 +25878,7 @@ declare const VDataTableServer: {
|
|
|
25515
25878
|
class?: any;
|
|
25516
25879
|
headers?: readonly {
|
|
25517
25880
|
readonly key?: (string & {}) | "data-table-group" | "data-table-select" | "data-table-expand" | undefined;
|
|
25518
|
-
readonly value?: SelectItemKey
|
|
25881
|
+
readonly value?: SelectItemKey<Record<string, any>>;
|
|
25519
25882
|
readonly title?: string | undefined;
|
|
25520
25883
|
readonly fixed?: boolean | undefined;
|
|
25521
25884
|
readonly align?: "center" | "end" | "start" | undefined;
|
|
@@ -25532,7 +25895,27 @@ declare const VDataTableServer: {
|
|
|
25532
25895
|
readonly sort?: DataTableCompareFunction<any> | undefined;
|
|
25533
25896
|
readonly sortRaw?: DataTableCompareFunction<any> | undefined;
|
|
25534
25897
|
readonly filter?: FilterFunction | undefined;
|
|
25535
|
-
readonly children?: readonly
|
|
25898
|
+
readonly children?: readonly {
|
|
25899
|
+
readonly key?: (string & {}) | "data-table-group" | "data-table-select" | "data-table-expand" | undefined;
|
|
25900
|
+
readonly value?: SelectItemKey<Record<string, any>>;
|
|
25901
|
+
readonly title?: string | undefined;
|
|
25902
|
+
readonly fixed?: boolean | undefined;
|
|
25903
|
+
readonly align?: "center" | "end" | "start" | undefined;
|
|
25904
|
+
readonly width?: string | number | undefined;
|
|
25905
|
+
readonly minWidth?: string | undefined;
|
|
25906
|
+
readonly maxWidth?: string | undefined;
|
|
25907
|
+
readonly headerProps?: {
|
|
25908
|
+
readonly [x: string]: any;
|
|
25909
|
+
} | undefined;
|
|
25910
|
+
readonly cellProps?: ((data: Pick<ItemKeySlot<any>, "index" | "item" | "value" | "internalItem">) => Record<string, any>) | {
|
|
25911
|
+
readonly [x: string]: any;
|
|
25912
|
+
} | undefined;
|
|
25913
|
+
readonly sortable?: boolean | undefined;
|
|
25914
|
+
readonly sort?: DataTableCompareFunction<any> | undefined;
|
|
25915
|
+
readonly sortRaw?: DataTableCompareFunction<any> | undefined;
|
|
25916
|
+
readonly filter?: FilterFunction | undefined;
|
|
25917
|
+
readonly children?: readonly any[] | undefined;
|
|
25918
|
+
}[] | undefined;
|
|
25536
25919
|
}[] | undefined;
|
|
25537
25920
|
theme?: string | undefined;
|
|
25538
25921
|
customKeySort?: Record<string, DataTableCompareFunction> | undefined;
|
|
@@ -25767,7 +26150,7 @@ declare const VDataTableServer: {
|
|
|
25767
26150
|
class?: any;
|
|
25768
26151
|
headers?: readonly {
|
|
25769
26152
|
readonly key?: (string & {}) | "data-table-group" | "data-table-select" | "data-table-expand" | undefined;
|
|
25770
|
-
readonly value?: SelectItemKey
|
|
26153
|
+
readonly value?: SelectItemKey<Record<string, any>>;
|
|
25771
26154
|
readonly title?: string | undefined;
|
|
25772
26155
|
readonly fixed?: boolean | undefined;
|
|
25773
26156
|
readonly align?: "center" | "end" | "start" | undefined;
|
|
@@ -25784,7 +26167,27 @@ declare const VDataTableServer: {
|
|
|
25784
26167
|
readonly sort?: DataTableCompareFunction<any> | undefined;
|
|
25785
26168
|
readonly sortRaw?: DataTableCompareFunction<any> | undefined;
|
|
25786
26169
|
readonly filter?: FilterFunction | undefined;
|
|
25787
|
-
readonly children?: readonly
|
|
26170
|
+
readonly children?: readonly {
|
|
26171
|
+
readonly key?: (string & {}) | "data-table-group" | "data-table-select" | "data-table-expand" | undefined;
|
|
26172
|
+
readonly value?: SelectItemKey<Record<string, any>>;
|
|
26173
|
+
readonly title?: string | undefined;
|
|
26174
|
+
readonly fixed?: boolean | undefined;
|
|
26175
|
+
readonly align?: "center" | "end" | "start" | undefined;
|
|
26176
|
+
readonly width?: string | number | undefined;
|
|
26177
|
+
readonly minWidth?: string | undefined;
|
|
26178
|
+
readonly maxWidth?: string | undefined;
|
|
26179
|
+
readonly headerProps?: {
|
|
26180
|
+
readonly [x: string]: any;
|
|
26181
|
+
} | undefined;
|
|
26182
|
+
readonly cellProps?: ((data: Pick<ItemKeySlot<any>, "index" | "item" | "value" | "internalItem">) => Record<string, any>) | {
|
|
26183
|
+
readonly [x: string]: any;
|
|
26184
|
+
} | undefined;
|
|
26185
|
+
readonly sortable?: boolean | undefined;
|
|
26186
|
+
readonly sort?: DataTableCompareFunction<any> | undefined;
|
|
26187
|
+
readonly sortRaw?: DataTableCompareFunction<any> | undefined;
|
|
26188
|
+
readonly filter?: FilterFunction | undefined;
|
|
26189
|
+
readonly children?: readonly any[] | undefined;
|
|
26190
|
+
}[] | undefined;
|
|
25788
26191
|
}[] | undefined;
|
|
25789
26192
|
theme?: string | undefined;
|
|
25790
26193
|
customKeySort?: Record<string, DataTableCompareFunction> | undefined;
|
|
@@ -25892,7 +26295,7 @@ declare const VDataTableServer: {
|
|
|
25892
26295
|
class?: any;
|
|
25893
26296
|
headers?: readonly {
|
|
25894
26297
|
readonly key?: (string & {}) | "data-table-group" | "data-table-select" | "data-table-expand" | undefined;
|
|
25895
|
-
readonly value?: SelectItemKey
|
|
26298
|
+
readonly value?: SelectItemKey<Record<string, any>>;
|
|
25896
26299
|
readonly title?: string | undefined;
|
|
25897
26300
|
readonly fixed?: boolean | undefined;
|
|
25898
26301
|
readonly align?: "center" | "end" | "start" | undefined;
|
|
@@ -25909,7 +26312,27 @@ declare const VDataTableServer: {
|
|
|
25909
26312
|
readonly sort?: DataTableCompareFunction<any> | undefined;
|
|
25910
26313
|
readonly sortRaw?: DataTableCompareFunction<any> | undefined;
|
|
25911
26314
|
readonly filter?: FilterFunction | undefined;
|
|
25912
|
-
readonly children?: readonly
|
|
26315
|
+
readonly children?: readonly {
|
|
26316
|
+
readonly key?: (string & {}) | "data-table-group" | "data-table-select" | "data-table-expand" | undefined;
|
|
26317
|
+
readonly value?: SelectItemKey<Record<string, any>>;
|
|
26318
|
+
readonly title?: string | undefined;
|
|
26319
|
+
readonly fixed?: boolean | undefined;
|
|
26320
|
+
readonly align?: "center" | "end" | "start" | undefined;
|
|
26321
|
+
readonly width?: string | number | undefined;
|
|
26322
|
+
readonly minWidth?: string | undefined;
|
|
26323
|
+
readonly maxWidth?: string | undefined;
|
|
26324
|
+
readonly headerProps?: {
|
|
26325
|
+
readonly [x: string]: any;
|
|
26326
|
+
} | undefined;
|
|
26327
|
+
readonly cellProps?: ((data: Pick<ItemKeySlot<any>, "index" | "item" | "value" | "internalItem">) => Record<string, any>) | {
|
|
26328
|
+
readonly [x: string]: any;
|
|
26329
|
+
} | undefined;
|
|
26330
|
+
readonly sortable?: boolean | undefined;
|
|
26331
|
+
readonly sort?: DataTableCompareFunction<any> | undefined;
|
|
26332
|
+
readonly sortRaw?: DataTableCompareFunction<any> | undefined;
|
|
26333
|
+
readonly filter?: FilterFunction | undefined;
|
|
26334
|
+
readonly children?: readonly any[] | undefined;
|
|
26335
|
+
}[] | undefined;
|
|
25913
26336
|
}[] | undefined;
|
|
25914
26337
|
theme?: string | undefined;
|
|
25915
26338
|
customKeySort?: Record<string, DataTableCompareFunction> | undefined;
|
|
@@ -26232,7 +26655,7 @@ declare const VDataTableServer: {
|
|
|
26232
26655
|
returnObject: BooleanConstructor;
|
|
26233
26656
|
headers: vue.PropType<readonly {
|
|
26234
26657
|
readonly key?: (string & {}) | "data-table-group" | "data-table-select" | "data-table-expand" | undefined;
|
|
26235
|
-
readonly value?: SelectItemKey
|
|
26658
|
+
readonly value?: SelectItemKey<Record<string, any>>;
|
|
26236
26659
|
readonly title?: string | undefined;
|
|
26237
26660
|
readonly fixed?: boolean | undefined;
|
|
26238
26661
|
readonly align?: "center" | "end" | "start" | undefined;
|
|
@@ -26249,7 +26672,27 @@ declare const VDataTableServer: {
|
|
|
26249
26672
|
readonly sort?: DataTableCompareFunction<any> | undefined;
|
|
26250
26673
|
readonly sortRaw?: DataTableCompareFunction<any> | undefined;
|
|
26251
26674
|
readonly filter?: FilterFunction | undefined;
|
|
26252
|
-
readonly children?: readonly
|
|
26675
|
+
readonly children?: readonly {
|
|
26676
|
+
readonly key?: (string & {}) | "data-table-group" | "data-table-select" | "data-table-expand" | undefined;
|
|
26677
|
+
readonly value?: SelectItemKey<Record<string, any>>;
|
|
26678
|
+
readonly title?: string | undefined;
|
|
26679
|
+
readonly fixed?: boolean | undefined;
|
|
26680
|
+
readonly align?: "center" | "end" | "start" | undefined;
|
|
26681
|
+
readonly width?: string | number | undefined;
|
|
26682
|
+
readonly minWidth?: string | undefined;
|
|
26683
|
+
readonly maxWidth?: string | undefined;
|
|
26684
|
+
readonly headerProps?: {
|
|
26685
|
+
readonly [x: string]: any;
|
|
26686
|
+
} | undefined;
|
|
26687
|
+
readonly cellProps?: ((data: Pick<ItemKeySlot<any>, "index" | "item" | "value" | "internalItem">) => Record<string, any>) | {
|
|
26688
|
+
readonly [x: string]: any;
|
|
26689
|
+
} | undefined;
|
|
26690
|
+
readonly sortable?: boolean | undefined;
|
|
26691
|
+
readonly sort?: DataTableCompareFunction<any> | undefined;
|
|
26692
|
+
readonly sortRaw?: DataTableCompareFunction<any> | undefined;
|
|
26693
|
+
readonly filter?: FilterFunction | undefined;
|
|
26694
|
+
readonly children?: readonly any[] | undefined;
|
|
26695
|
+
}[] | undefined;
|
|
26253
26696
|
}[]>;
|
|
26254
26697
|
groupBy: {
|
|
26255
26698
|
type: vue.PropType<readonly SortItem[]>;
|
|
@@ -26406,7 +26849,7 @@ declare const VDataTableServer: {
|
|
|
26406
26849
|
returnObject: BooleanConstructor;
|
|
26407
26850
|
headers: vue.PropType<readonly {
|
|
26408
26851
|
readonly key?: (string & {}) | "data-table-group" | "data-table-select" | "data-table-expand" | undefined;
|
|
26409
|
-
readonly value?: SelectItemKey
|
|
26852
|
+
readonly value?: SelectItemKey<Record<string, any>>;
|
|
26410
26853
|
readonly title?: string | undefined;
|
|
26411
26854
|
readonly fixed?: boolean | undefined;
|
|
26412
26855
|
readonly align?: "center" | "end" | "start" | undefined;
|
|
@@ -26423,7 +26866,27 @@ declare const VDataTableServer: {
|
|
|
26423
26866
|
readonly sort?: DataTableCompareFunction<any> | undefined;
|
|
26424
26867
|
readonly sortRaw?: DataTableCompareFunction<any> | undefined;
|
|
26425
26868
|
readonly filter?: FilterFunction | undefined;
|
|
26426
|
-
readonly children?: readonly
|
|
26869
|
+
readonly children?: readonly {
|
|
26870
|
+
readonly key?: (string & {}) | "data-table-group" | "data-table-select" | "data-table-expand" | undefined;
|
|
26871
|
+
readonly value?: SelectItemKey<Record<string, any>>;
|
|
26872
|
+
readonly title?: string | undefined;
|
|
26873
|
+
readonly fixed?: boolean | undefined;
|
|
26874
|
+
readonly align?: "center" | "end" | "start" | undefined;
|
|
26875
|
+
readonly width?: string | number | undefined;
|
|
26876
|
+
readonly minWidth?: string | undefined;
|
|
26877
|
+
readonly maxWidth?: string | undefined;
|
|
26878
|
+
readonly headerProps?: {
|
|
26879
|
+
readonly [x: string]: any;
|
|
26880
|
+
} | undefined;
|
|
26881
|
+
readonly cellProps?: ((data: Pick<ItemKeySlot<any>, "index" | "item" | "value" | "internalItem">) => Record<string, any>) | {
|
|
26882
|
+
readonly [x: string]: any;
|
|
26883
|
+
} | undefined;
|
|
26884
|
+
readonly sortable?: boolean | undefined;
|
|
26885
|
+
readonly sort?: DataTableCompareFunction<any> | undefined;
|
|
26886
|
+
readonly sortRaw?: DataTableCompareFunction<any> | undefined;
|
|
26887
|
+
readonly filter?: FilterFunction | undefined;
|
|
26888
|
+
readonly children?: readonly any[] | undefined;
|
|
26889
|
+
}[] | undefined;
|
|
26427
26890
|
}[]>;
|
|
26428
26891
|
groupBy: {
|
|
26429
26892
|
type: vue.PropType<readonly SortItem[]>;
|
|
@@ -26482,6 +26945,7 @@ declare const VDatePicker: {
|
|
|
26482
26945
|
disabled: boolean;
|
|
26483
26946
|
tag: string;
|
|
26484
26947
|
landscape: boolean;
|
|
26948
|
+
tile: boolean;
|
|
26485
26949
|
nextIcon: string;
|
|
26486
26950
|
prevIcon: string;
|
|
26487
26951
|
modeIcon: string;
|
|
@@ -26531,6 +26995,7 @@ declare const VDatePicker: {
|
|
|
26531
26995
|
disabled: boolean;
|
|
26532
26996
|
tag: string;
|
|
26533
26997
|
landscape: boolean;
|
|
26998
|
+
tile: boolean;
|
|
26534
26999
|
nextIcon: string;
|
|
26535
27000
|
prevIcon: string;
|
|
26536
27001
|
modeIcon: string;
|
|
@@ -26577,6 +27042,7 @@ declare const VDatePicker: {
|
|
|
26577
27042
|
tag: string;
|
|
26578
27043
|
landscape: boolean;
|
|
26579
27044
|
rounded: string | number | boolean;
|
|
27045
|
+
tile: boolean;
|
|
26580
27046
|
nextIcon: string;
|
|
26581
27047
|
prevIcon: string;
|
|
26582
27048
|
modeIcon: string;
|
|
@@ -26616,6 +27082,7 @@ declare const VDatePicker: {
|
|
|
26616
27082
|
disabled: boolean;
|
|
26617
27083
|
tag: string;
|
|
26618
27084
|
landscape: boolean;
|
|
27085
|
+
tile: boolean;
|
|
26619
27086
|
nextIcon: string;
|
|
26620
27087
|
prevIcon: string;
|
|
26621
27088
|
modeIcon: string;
|
|
@@ -26662,6 +27129,7 @@ declare const VDatePicker: {
|
|
|
26662
27129
|
tag: string;
|
|
26663
27130
|
landscape: boolean;
|
|
26664
27131
|
rounded: string | number | boolean;
|
|
27132
|
+
tile: boolean;
|
|
26665
27133
|
nextIcon: string;
|
|
26666
27134
|
prevIcon: string;
|
|
26667
27135
|
modeIcon: string;
|
|
@@ -26682,6 +27150,7 @@ declare const VDatePicker: {
|
|
|
26682
27150
|
disabled: boolean;
|
|
26683
27151
|
tag: string;
|
|
26684
27152
|
landscape: boolean;
|
|
27153
|
+
tile: boolean;
|
|
26685
27154
|
nextIcon: string;
|
|
26686
27155
|
prevIcon: string;
|
|
26687
27156
|
modeIcon: string;
|
|
@@ -26733,6 +27202,7 @@ declare const VDatePicker: {
|
|
|
26733
27202
|
tag: string;
|
|
26734
27203
|
landscape: boolean;
|
|
26735
27204
|
rounded: string | number | boolean;
|
|
27205
|
+
tile: boolean;
|
|
26736
27206
|
nextIcon: string;
|
|
26737
27207
|
prevIcon: string;
|
|
26738
27208
|
modeIcon: string;
|
|
@@ -26777,6 +27247,7 @@ declare const VDatePicker: {
|
|
|
26777
27247
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
26778
27248
|
default: undefined;
|
|
26779
27249
|
};
|
|
27250
|
+
tile: BooleanConstructor;
|
|
26780
27251
|
position: {
|
|
26781
27252
|
type: vue.PropType<"fixed" | "absolute" | "static" | "sticky" | "relative">;
|
|
26782
27253
|
validator: (v: any) => boolean;
|
|
@@ -26870,6 +27341,7 @@ declare const VDatePicker: {
|
|
|
26870
27341
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
26871
27342
|
default: undefined;
|
|
26872
27343
|
};
|
|
27344
|
+
tile: BooleanConstructor;
|
|
26873
27345
|
position: {
|
|
26874
27346
|
type: vue.PropType<"fixed" | "absolute" | "static" | "sticky" | "relative">;
|
|
26875
27347
|
validator: (v: any) => boolean;
|
|
@@ -27663,7 +28135,7 @@ declare const VDatePickerMonths: {
|
|
|
27663
28135
|
} & {
|
|
27664
28136
|
"onUpdate:modelValue"?: ((date: any) => any) | undefined;
|
|
27665
28137
|
}, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
27666
|
-
'update:modelValue': (date: any) =>
|
|
28138
|
+
'update:modelValue': (date: any) => true;
|
|
27667
28139
|
}, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {} & {
|
|
27668
28140
|
height?: string | number | undefined;
|
|
27669
28141
|
color?: string | undefined;
|
|
@@ -27815,7 +28287,7 @@ declare const VDatePickerMonths: {
|
|
|
27815
28287
|
} & {
|
|
27816
28288
|
"onUpdate:modelValue"?: ((date: any) => any) | undefined;
|
|
27817
28289
|
}, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
27818
|
-
'update:modelValue': (date: any) =>
|
|
28290
|
+
'update:modelValue': (date: any) => true;
|
|
27819
28291
|
}, string, {}, {}, string, vue.SlotsType<Partial<{
|
|
27820
28292
|
month: (arg: {
|
|
27821
28293
|
month: {
|
|
@@ -27901,7 +28373,7 @@ declare const VDatePickerYears: {
|
|
|
27901
28373
|
} & {
|
|
27902
28374
|
"onUpdate:modelValue"?: ((year: number) => any) | undefined;
|
|
27903
28375
|
}, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
27904
|
-
'update:modelValue': (year: number) =>
|
|
28376
|
+
'update:modelValue': (year: number) => true;
|
|
27905
28377
|
}, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {} & {
|
|
27906
28378
|
max?: unknown;
|
|
27907
28379
|
height?: string | number | undefined;
|
|
@@ -28109,7 +28581,7 @@ declare const VDatePickerYears: {
|
|
|
28109
28581
|
} & {
|
|
28110
28582
|
"onUpdate:modelValue"?: ((year: number) => any) | undefined;
|
|
28111
28583
|
}, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
28112
|
-
'update:modelValue': (year: number) =>
|
|
28584
|
+
'update:modelValue': (year: number) => true;
|
|
28113
28585
|
}, string, {}, {}, string, vue.SlotsType<Partial<{
|
|
28114
28586
|
year: (arg: {
|
|
28115
28587
|
year: {
|
|
@@ -30389,6 +30861,7 @@ type VDivider = InstanceType<typeof VDivider>;
|
|
|
30389
30861
|
|
|
30390
30862
|
declare const VExpansionPanels: {
|
|
30391
30863
|
new (...args: any[]): vue.CreateComponentPublicInstance<{
|
|
30864
|
+
flat: boolean;
|
|
30392
30865
|
variant: "default" | "inset" | "accordion" | "popout";
|
|
30393
30866
|
style: vue.StyleValue;
|
|
30394
30867
|
disabled: boolean;
|
|
@@ -30396,6 +30869,7 @@ declare const VExpansionPanels: {
|
|
|
30396
30869
|
readonly: boolean;
|
|
30397
30870
|
static: boolean;
|
|
30398
30871
|
tag: string;
|
|
30872
|
+
tile: boolean;
|
|
30399
30873
|
} & {
|
|
30400
30874
|
max?: number | undefined;
|
|
30401
30875
|
color?: string | undefined;
|
|
@@ -30418,6 +30892,7 @@ declare const VExpansionPanels: {
|
|
|
30418
30892
|
}, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
30419
30893
|
'update:modelValue': (val: unknown) => boolean;
|
|
30420
30894
|
}, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
|
30895
|
+
flat: boolean;
|
|
30421
30896
|
variant: "default" | "inset" | "accordion" | "popout";
|
|
30422
30897
|
style: vue.StyleValue;
|
|
30423
30898
|
disabled: boolean;
|
|
@@ -30425,6 +30900,7 @@ declare const VExpansionPanels: {
|
|
|
30425
30900
|
readonly: boolean;
|
|
30426
30901
|
static: boolean;
|
|
30427
30902
|
tag: string;
|
|
30903
|
+
tile: boolean;
|
|
30428
30904
|
} & {
|
|
30429
30905
|
max?: number | undefined;
|
|
30430
30906
|
color?: string | undefined;
|
|
@@ -30445,6 +30921,7 @@ declare const VExpansionPanels: {
|
|
|
30445
30921
|
} & {
|
|
30446
30922
|
"onUpdate:modelValue"?: ((val: unknown) => any) | undefined;
|
|
30447
30923
|
}, {
|
|
30924
|
+
flat: boolean;
|
|
30448
30925
|
variant: "default" | "inset" | "accordion" | "popout";
|
|
30449
30926
|
style: vue.StyleValue;
|
|
30450
30927
|
disabled: boolean;
|
|
@@ -30452,6 +30929,7 @@ declare const VExpansionPanels: {
|
|
|
30452
30929
|
readonly: boolean;
|
|
30453
30930
|
static: boolean;
|
|
30454
30931
|
tag: string;
|
|
30932
|
+
tile: boolean;
|
|
30455
30933
|
modelValue: any;
|
|
30456
30934
|
}, true, {}, vue.SlotsType<Partial<{
|
|
30457
30935
|
default: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
@@ -30465,6 +30943,7 @@ declare const VExpansionPanels: {
|
|
|
30465
30943
|
M: {};
|
|
30466
30944
|
Defaults: {};
|
|
30467
30945
|
}, {
|
|
30946
|
+
flat: boolean;
|
|
30468
30947
|
variant: "default" | "inset" | "accordion" | "popout";
|
|
30469
30948
|
style: vue.StyleValue;
|
|
30470
30949
|
disabled: boolean;
|
|
@@ -30472,6 +30951,7 @@ declare const VExpansionPanels: {
|
|
|
30472
30951
|
readonly: boolean;
|
|
30473
30952
|
static: boolean;
|
|
30474
30953
|
tag: string;
|
|
30954
|
+
tile: boolean;
|
|
30475
30955
|
} & {
|
|
30476
30956
|
max?: number | undefined;
|
|
30477
30957
|
color?: string | undefined;
|
|
@@ -30492,6 +30972,7 @@ declare const VExpansionPanels: {
|
|
|
30492
30972
|
} & {
|
|
30493
30973
|
"onUpdate:modelValue"?: ((val: unknown) => any) | undefined;
|
|
30494
30974
|
}, {}, {}, {}, {}, {
|
|
30975
|
+
flat: boolean;
|
|
30495
30976
|
variant: "default" | "inset" | "accordion" | "popout";
|
|
30496
30977
|
style: vue.StyleValue;
|
|
30497
30978
|
disabled: boolean;
|
|
@@ -30499,12 +30980,14 @@ declare const VExpansionPanels: {
|
|
|
30499
30980
|
readonly: boolean;
|
|
30500
30981
|
static: boolean;
|
|
30501
30982
|
tag: string;
|
|
30983
|
+
tile: boolean;
|
|
30502
30984
|
modelValue: any;
|
|
30503
30985
|
}>;
|
|
30504
30986
|
__isFragment?: undefined;
|
|
30505
30987
|
__isTeleport?: undefined;
|
|
30506
30988
|
__isSuspense?: undefined;
|
|
30507
30989
|
} & vue.ComponentOptionsBase<{
|
|
30990
|
+
flat: boolean;
|
|
30508
30991
|
variant: "default" | "inset" | "accordion" | "popout";
|
|
30509
30992
|
style: vue.StyleValue;
|
|
30510
30993
|
disabled: boolean;
|
|
@@ -30512,6 +30995,7 @@ declare const VExpansionPanels: {
|
|
|
30512
30995
|
readonly: boolean;
|
|
30513
30996
|
static: boolean;
|
|
30514
30997
|
tag: string;
|
|
30998
|
+
tile: boolean;
|
|
30515
30999
|
} & {
|
|
30516
31000
|
max?: number | undefined;
|
|
30517
31001
|
color?: string | undefined;
|
|
@@ -30534,6 +31018,7 @@ declare const VExpansionPanels: {
|
|
|
30534
31018
|
}, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
30535
31019
|
'update:modelValue': (val: unknown) => boolean;
|
|
30536
31020
|
}, string, {
|
|
31021
|
+
flat: boolean;
|
|
30537
31022
|
variant: "default" | "inset" | "accordion" | "popout";
|
|
30538
31023
|
style: vue.StyleValue;
|
|
30539
31024
|
disabled: boolean;
|
|
@@ -30541,6 +31026,7 @@ declare const VExpansionPanels: {
|
|
|
30541
31026
|
readonly: boolean;
|
|
30542
31027
|
static: boolean;
|
|
30543
31028
|
tag: string;
|
|
31029
|
+
tile: boolean;
|
|
30544
31030
|
modelValue: any;
|
|
30545
31031
|
}, {}, string, vue.SlotsType<Partial<{
|
|
30546
31032
|
default: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
@@ -30567,7 +31053,9 @@ declare const VExpansionPanels: {
|
|
|
30567
31053
|
default: null;
|
|
30568
31054
|
};
|
|
30569
31055
|
color: StringConstructor;
|
|
31056
|
+
flat: BooleanConstructor;
|
|
30570
31057
|
static: BooleanConstructor;
|
|
31058
|
+
tile: BooleanConstructor;
|
|
30571
31059
|
variant: {
|
|
30572
31060
|
type: PropType<"default" | "inset" | "accordion" | "popout">;
|
|
30573
31061
|
default: string;
|
|
@@ -30595,7 +31083,9 @@ declare const VExpansionPanels: {
|
|
|
30595
31083
|
default: null;
|
|
30596
31084
|
};
|
|
30597
31085
|
color: StringConstructor;
|
|
31086
|
+
flat: BooleanConstructor;
|
|
30598
31087
|
static: BooleanConstructor;
|
|
31088
|
+
tile: BooleanConstructor;
|
|
30599
31089
|
variant: {
|
|
30600
31090
|
type: PropType<"default" | "inset" | "accordion" | "popout">;
|
|
30601
31091
|
default: string;
|
|
@@ -30613,6 +31103,7 @@ declare const VExpansionPanel: {
|
|
|
30613
31103
|
readonly: boolean;
|
|
30614
31104
|
static: boolean;
|
|
30615
31105
|
tag: string;
|
|
31106
|
+
tile: boolean;
|
|
30616
31107
|
ripple: boolean | {
|
|
30617
31108
|
class: string;
|
|
30618
31109
|
} | undefined;
|
|
@@ -30659,6 +31150,7 @@ declare const VExpansionPanel: {
|
|
|
30659
31150
|
readonly: boolean;
|
|
30660
31151
|
static: boolean;
|
|
30661
31152
|
tag: string;
|
|
31153
|
+
tile: boolean;
|
|
30662
31154
|
ripple: boolean | {
|
|
30663
31155
|
class: string;
|
|
30664
31156
|
} | undefined;
|
|
@@ -30702,6 +31194,7 @@ declare const VExpansionPanel: {
|
|
|
30702
31194
|
static: boolean;
|
|
30703
31195
|
tag: string;
|
|
30704
31196
|
rounded: string | number | boolean;
|
|
31197
|
+
tile: boolean;
|
|
30705
31198
|
ripple: boolean | {
|
|
30706
31199
|
class: string;
|
|
30707
31200
|
} | undefined;
|
|
@@ -30732,6 +31225,7 @@ declare const VExpansionPanel: {
|
|
|
30732
31225
|
readonly: boolean;
|
|
30733
31226
|
static: boolean;
|
|
30734
31227
|
tag: string;
|
|
31228
|
+
tile: boolean;
|
|
30735
31229
|
ripple: boolean | {
|
|
30736
31230
|
class: string;
|
|
30737
31231
|
} | undefined;
|
|
@@ -30775,6 +31269,7 @@ declare const VExpansionPanel: {
|
|
|
30775
31269
|
static: boolean;
|
|
30776
31270
|
tag: string;
|
|
30777
31271
|
rounded: string | number | boolean;
|
|
31272
|
+
tile: boolean;
|
|
30778
31273
|
ripple: boolean | {
|
|
30779
31274
|
class: string;
|
|
30780
31275
|
} | undefined;
|
|
@@ -30792,6 +31287,7 @@ declare const VExpansionPanel: {
|
|
|
30792
31287
|
readonly: boolean;
|
|
30793
31288
|
static: boolean;
|
|
30794
31289
|
tag: string;
|
|
31290
|
+
tile: boolean;
|
|
30795
31291
|
ripple: boolean | {
|
|
30796
31292
|
class: string;
|
|
30797
31293
|
} | undefined;
|
|
@@ -30839,6 +31335,7 @@ declare const VExpansionPanel: {
|
|
|
30839
31335
|
static: boolean;
|
|
30840
31336
|
tag: string;
|
|
30841
31337
|
rounded: string | number | boolean;
|
|
31338
|
+
tile: boolean;
|
|
30842
31339
|
ripple: boolean | {
|
|
30843
31340
|
class: string;
|
|
30844
31341
|
} | undefined;
|
|
@@ -30887,6 +31384,7 @@ declare const VExpansionPanel: {
|
|
|
30887
31384
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
30888
31385
|
default: undefined;
|
|
30889
31386
|
};
|
|
31387
|
+
tile: BooleanConstructor;
|
|
30890
31388
|
eager: BooleanConstructor;
|
|
30891
31389
|
value: null;
|
|
30892
31390
|
disabled: BooleanConstructor;
|
|
@@ -30930,6 +31428,7 @@ declare const VExpansionPanel: {
|
|
|
30930
31428
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
30931
31429
|
default: undefined;
|
|
30932
31430
|
};
|
|
31431
|
+
tile: BooleanConstructor;
|
|
30933
31432
|
eager: BooleanConstructor;
|
|
30934
31433
|
value: null;
|
|
30935
31434
|
disabled: BooleanConstructor;
|
|
@@ -31376,6 +31875,7 @@ declare const VFileInput: {
|
|
|
31376
31875
|
readonly: boolean | null;
|
|
31377
31876
|
counter: boolean;
|
|
31378
31877
|
messages: string | readonly string[];
|
|
31878
|
+
tile: boolean;
|
|
31379
31879
|
density: Density;
|
|
31380
31880
|
modelValue: File[];
|
|
31381
31881
|
prependIcon: NonNullable<IconValue>;
|
|
@@ -31734,6 +32234,7 @@ declare const VFileInput: {
|
|
|
31734
32234
|
readonly: boolean | null;
|
|
31735
32235
|
counter: boolean;
|
|
31736
32236
|
messages: string | readonly string[];
|
|
32237
|
+
tile: boolean;
|
|
31737
32238
|
density: Density;
|
|
31738
32239
|
modelValue: File[];
|
|
31739
32240
|
prependIcon: NonNullable<IconValue>;
|
|
@@ -31859,6 +32360,7 @@ declare const VFileInput: {
|
|
|
31859
32360
|
counter: boolean;
|
|
31860
32361
|
messages: string | readonly string[];
|
|
31861
32362
|
rounded: string | number | boolean;
|
|
32363
|
+
tile: boolean;
|
|
31862
32364
|
density: Density;
|
|
31863
32365
|
modelValue: File[];
|
|
31864
32366
|
prependIcon: NonNullable<IconValue>;
|
|
@@ -31942,6 +32444,7 @@ declare const VFileInput: {
|
|
|
31942
32444
|
readonly: boolean | null;
|
|
31943
32445
|
counter: boolean;
|
|
31944
32446
|
messages: string | readonly string[];
|
|
32447
|
+
tile: boolean;
|
|
31945
32448
|
density: Density;
|
|
31946
32449
|
modelValue: File[];
|
|
31947
32450
|
prependIcon: NonNullable<IconValue>;
|
|
@@ -32296,6 +32799,7 @@ declare const VFileInput: {
|
|
|
32296
32799
|
counter: boolean;
|
|
32297
32800
|
messages: string | readonly string[];
|
|
32298
32801
|
rounded: string | number | boolean;
|
|
32802
|
+
tile: boolean;
|
|
32299
32803
|
density: Density;
|
|
32300
32804
|
modelValue: File[];
|
|
32301
32805
|
prependIcon: NonNullable<IconValue>;
|
|
@@ -32332,6 +32836,7 @@ declare const VFileInput: {
|
|
|
32332
32836
|
readonly: boolean | null;
|
|
32333
32837
|
counter: boolean;
|
|
32334
32838
|
messages: string | readonly string[];
|
|
32839
|
+
tile: boolean;
|
|
32335
32840
|
density: Density;
|
|
32336
32841
|
modelValue: File[];
|
|
32337
32842
|
prependIcon: NonNullable<IconValue>;
|
|
@@ -32691,6 +33196,7 @@ declare const VFileInput: {
|
|
|
32691
33196
|
counter: boolean;
|
|
32692
33197
|
messages: string | readonly string[];
|
|
32693
33198
|
rounded: string | number | boolean;
|
|
33199
|
+
tile: boolean;
|
|
32694
33200
|
density: Density;
|
|
32695
33201
|
modelValue: File[];
|
|
32696
33202
|
prependIcon: NonNullable<IconValue>;
|
|
@@ -32760,6 +33266,7 @@ declare const VFileInput: {
|
|
|
32760
33266
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
32761
33267
|
default: undefined;
|
|
32762
33268
|
};
|
|
33269
|
+
tile: BooleanConstructor;
|
|
32763
33270
|
loading: (StringConstructor | BooleanConstructor)[];
|
|
32764
33271
|
class: PropType<any>;
|
|
32765
33272
|
style: {
|
|
@@ -32877,6 +33384,7 @@ declare const VFileInput: {
|
|
|
32877
33384
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
32878
33385
|
default: undefined;
|
|
32879
33386
|
};
|
|
33387
|
+
tile: BooleanConstructor;
|
|
32880
33388
|
loading: (StringConstructor | BooleanConstructor)[];
|
|
32881
33389
|
class: PropType<any>;
|
|
32882
33390
|
style: {
|
|
@@ -32999,6 +33507,7 @@ declare const VFooter: {
|
|
|
32999
33507
|
style: vue.StyleValue;
|
|
33000
33508
|
tag: string;
|
|
33001
33509
|
app: boolean;
|
|
33510
|
+
tile: boolean;
|
|
33002
33511
|
} & {
|
|
33003
33512
|
name?: string | undefined;
|
|
33004
33513
|
border?: string | number | boolean | undefined;
|
|
@@ -33023,6 +33532,7 @@ declare const VFooter: {
|
|
|
33023
33532
|
style: vue.StyleValue;
|
|
33024
33533
|
tag: string;
|
|
33025
33534
|
app: boolean;
|
|
33535
|
+
tile: boolean;
|
|
33026
33536
|
} & {
|
|
33027
33537
|
name?: string | undefined;
|
|
33028
33538
|
border?: string | number | boolean | undefined;
|
|
@@ -33048,6 +33558,7 @@ declare const VFooter: {
|
|
|
33048
33558
|
tag: string;
|
|
33049
33559
|
app: boolean;
|
|
33050
33560
|
rounded: string | number | boolean;
|
|
33561
|
+
tile: boolean;
|
|
33051
33562
|
}, true, {}, vue.SlotsType<Partial<{
|
|
33052
33563
|
default: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
33053
33564
|
[key: string]: any;
|
|
@@ -33066,6 +33577,7 @@ declare const VFooter: {
|
|
|
33066
33577
|
style: vue.StyleValue;
|
|
33067
33578
|
tag: string;
|
|
33068
33579
|
app: boolean;
|
|
33580
|
+
tile: boolean;
|
|
33069
33581
|
} & {
|
|
33070
33582
|
name?: string | undefined;
|
|
33071
33583
|
border?: string | number | boolean | undefined;
|
|
@@ -33091,6 +33603,7 @@ declare const VFooter: {
|
|
|
33091
33603
|
tag: string;
|
|
33092
33604
|
app: boolean;
|
|
33093
33605
|
rounded: string | number | boolean;
|
|
33606
|
+
tile: boolean;
|
|
33094
33607
|
}>;
|
|
33095
33608
|
__isFragment?: undefined;
|
|
33096
33609
|
__isTeleport?: undefined;
|
|
@@ -33102,6 +33615,7 @@ declare const VFooter: {
|
|
|
33102
33615
|
style: vue.StyleValue;
|
|
33103
33616
|
tag: string;
|
|
33104
33617
|
app: boolean;
|
|
33618
|
+
tile: boolean;
|
|
33105
33619
|
} & {
|
|
33106
33620
|
name?: string | undefined;
|
|
33107
33621
|
border?: string | number | boolean | undefined;
|
|
@@ -33127,6 +33641,7 @@ declare const VFooter: {
|
|
|
33127
33641
|
tag: string;
|
|
33128
33642
|
app: boolean;
|
|
33129
33643
|
rounded: string | number | boolean;
|
|
33644
|
+
tile: boolean;
|
|
33130
33645
|
}, {}, string, vue.SlotsType<Partial<{
|
|
33131
33646
|
default: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
33132
33647
|
[key: string]: any;
|
|
@@ -33144,6 +33659,7 @@ declare const VFooter: {
|
|
|
33144
33659
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
33145
33660
|
default: undefined;
|
|
33146
33661
|
};
|
|
33662
|
+
tile: BooleanConstructor;
|
|
33147
33663
|
name: {
|
|
33148
33664
|
type: StringConstructor;
|
|
33149
33665
|
};
|
|
@@ -33181,6 +33697,7 @@ declare const VFooter: {
|
|
|
33181
33697
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
33182
33698
|
default: undefined;
|
|
33183
33699
|
};
|
|
33700
|
+
tile: BooleanConstructor;
|
|
33184
33701
|
name: {
|
|
33185
33702
|
type: StringConstructor;
|
|
33186
33703
|
};
|
|
@@ -36642,6 +37159,7 @@ declare const VList: {
|
|
|
36642
37159
|
disabled: boolean;
|
|
36643
37160
|
tag: string;
|
|
36644
37161
|
mandatory: boolean;
|
|
37162
|
+
tile: boolean;
|
|
36645
37163
|
density: Density;
|
|
36646
37164
|
slim: boolean;
|
|
36647
37165
|
valueComparator: typeof deepEqual;
|
|
@@ -36704,6 +37222,7 @@ declare const VList: {
|
|
|
36704
37222
|
disabled: boolean;
|
|
36705
37223
|
tag: string;
|
|
36706
37224
|
mandatory: boolean;
|
|
37225
|
+
tile: boolean;
|
|
36707
37226
|
density: Density;
|
|
36708
37227
|
slim: boolean;
|
|
36709
37228
|
valueComparator: typeof deepEqual;
|
|
@@ -36750,6 +37269,7 @@ declare const VList: {
|
|
|
36750
37269
|
tag: string;
|
|
36751
37270
|
mandatory: boolean;
|
|
36752
37271
|
rounded: string | number | boolean;
|
|
37272
|
+
tile: boolean;
|
|
36753
37273
|
density: Density;
|
|
36754
37274
|
slim: boolean;
|
|
36755
37275
|
valueComparator: typeof deepEqual;
|
|
@@ -36842,6 +37362,7 @@ declare const VList: {
|
|
|
36842
37362
|
disabled: boolean;
|
|
36843
37363
|
tag: string;
|
|
36844
37364
|
mandatory: boolean;
|
|
37365
|
+
tile: boolean;
|
|
36845
37366
|
density: Density;
|
|
36846
37367
|
slim: boolean;
|
|
36847
37368
|
valueComparator: typeof deepEqual;
|
|
@@ -36892,6 +37413,7 @@ declare const VList: {
|
|
|
36892
37413
|
tag: string;
|
|
36893
37414
|
mandatory: boolean;
|
|
36894
37415
|
rounded: string | number | boolean;
|
|
37416
|
+
tile: boolean;
|
|
36895
37417
|
density: Density;
|
|
36896
37418
|
slim: boolean;
|
|
36897
37419
|
valueComparator: typeof deepEqual;
|
|
@@ -36911,6 +37433,7 @@ declare const VList: {
|
|
|
36911
37433
|
disabled: boolean;
|
|
36912
37434
|
tag: string;
|
|
36913
37435
|
mandatory: boolean;
|
|
37436
|
+
tile: boolean;
|
|
36914
37437
|
density: Density;
|
|
36915
37438
|
slim: boolean;
|
|
36916
37439
|
valueComparator: typeof deepEqual;
|
|
@@ -36974,6 +37497,7 @@ declare const VList: {
|
|
|
36974
37497
|
tag: string;
|
|
36975
37498
|
mandatory: boolean;
|
|
36976
37499
|
rounded: string | number | boolean;
|
|
37500
|
+
tile: boolean;
|
|
36977
37501
|
density: Density;
|
|
36978
37502
|
slim: boolean;
|
|
36979
37503
|
valueComparator: typeof deepEqual;
|
|
@@ -37091,6 +37615,7 @@ declare const VList: {
|
|
|
37091
37615
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
37092
37616
|
default: undefined;
|
|
37093
37617
|
};
|
|
37618
|
+
tile: BooleanConstructor;
|
|
37094
37619
|
items: {
|
|
37095
37620
|
type: PropType<any[]>;
|
|
37096
37621
|
default: () => never[];
|
|
@@ -37184,6 +37709,7 @@ declare const VList: {
|
|
|
37184
37709
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
37185
37710
|
default: undefined;
|
|
37186
37711
|
};
|
|
37712
|
+
tile: BooleanConstructor;
|
|
37187
37713
|
items: {
|
|
37188
37714
|
type: PropType<any[]>;
|
|
37189
37715
|
default: () => never[];
|
|
@@ -40513,6 +41039,7 @@ declare const VNavigationDrawer: {
|
|
|
40513
41039
|
temporary: boolean;
|
|
40514
41040
|
tag: string;
|
|
40515
41041
|
sticky: boolean;
|
|
41042
|
+
tile: boolean;
|
|
40516
41043
|
floating: boolean;
|
|
40517
41044
|
modelValue: boolean | null;
|
|
40518
41045
|
scrim: string | boolean;
|
|
@@ -40568,6 +41095,7 @@ declare const VNavigationDrawer: {
|
|
|
40568
41095
|
temporary: boolean;
|
|
40569
41096
|
tag: string;
|
|
40570
41097
|
sticky: boolean;
|
|
41098
|
+
tile: boolean;
|
|
40571
41099
|
floating: boolean;
|
|
40572
41100
|
modelValue: boolean | null;
|
|
40573
41101
|
scrim: string | boolean;
|
|
@@ -40619,6 +41147,7 @@ declare const VNavigationDrawer: {
|
|
|
40619
41147
|
tag: string;
|
|
40620
41148
|
sticky: boolean;
|
|
40621
41149
|
rounded: string | number | boolean;
|
|
41150
|
+
tile: boolean;
|
|
40622
41151
|
floating: boolean;
|
|
40623
41152
|
modelValue: boolean | null;
|
|
40624
41153
|
scrim: string | boolean;
|
|
@@ -40658,6 +41187,7 @@ declare const VNavigationDrawer: {
|
|
|
40658
41187
|
temporary: boolean;
|
|
40659
41188
|
tag: string;
|
|
40660
41189
|
sticky: boolean;
|
|
41190
|
+
tile: boolean;
|
|
40661
41191
|
floating: boolean;
|
|
40662
41192
|
modelValue: boolean | null;
|
|
40663
41193
|
scrim: string | boolean;
|
|
@@ -40711,6 +41241,7 @@ declare const VNavigationDrawer: {
|
|
|
40711
41241
|
tag: string;
|
|
40712
41242
|
sticky: boolean;
|
|
40713
41243
|
rounded: string | number | boolean;
|
|
41244
|
+
tile: boolean;
|
|
40714
41245
|
floating: boolean;
|
|
40715
41246
|
modelValue: boolean | null;
|
|
40716
41247
|
scrim: string | boolean;
|
|
@@ -40734,6 +41265,7 @@ declare const VNavigationDrawer: {
|
|
|
40734
41265
|
temporary: boolean;
|
|
40735
41266
|
tag: string;
|
|
40736
41267
|
sticky: boolean;
|
|
41268
|
+
tile: boolean;
|
|
40737
41269
|
floating: boolean;
|
|
40738
41270
|
modelValue: boolean | null;
|
|
40739
41271
|
scrim: string | boolean;
|
|
@@ -40790,6 +41322,7 @@ declare const VNavigationDrawer: {
|
|
|
40790
41322
|
tag: string;
|
|
40791
41323
|
sticky: boolean;
|
|
40792
41324
|
rounded: string | number | boolean;
|
|
41325
|
+
tile: boolean;
|
|
40793
41326
|
floating: boolean;
|
|
40794
41327
|
modelValue: boolean | null;
|
|
40795
41328
|
scrim: string | boolean;
|
|
@@ -40826,6 +41359,7 @@ declare const VNavigationDrawer: {
|
|
|
40826
41359
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
40827
41360
|
default: undefined;
|
|
40828
41361
|
};
|
|
41362
|
+
tile: BooleanConstructor;
|
|
40829
41363
|
name: {
|
|
40830
41364
|
type: StringConstructor;
|
|
40831
41365
|
};
|
|
@@ -40893,6 +41427,7 @@ declare const VNavigationDrawer: {
|
|
|
40893
41427
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
40894
41428
|
default: undefined;
|
|
40895
41429
|
};
|
|
41430
|
+
tile: BooleanConstructor;
|
|
40896
41431
|
name: {
|
|
40897
41432
|
type: StringConstructor;
|
|
40898
41433
|
};
|
|
@@ -41998,6 +42533,7 @@ declare const VPagination: {
|
|
|
41998
42533
|
size: string | number;
|
|
41999
42534
|
tag: string;
|
|
42000
42535
|
ellipsis: string;
|
|
42536
|
+
tile: boolean;
|
|
42001
42537
|
density: Density;
|
|
42002
42538
|
modelValue: number;
|
|
42003
42539
|
nextIcon: IconValue;
|
|
@@ -42063,6 +42599,7 @@ declare const VPagination: {
|
|
|
42063
42599
|
size: string | number;
|
|
42064
42600
|
tag: string;
|
|
42065
42601
|
ellipsis: string;
|
|
42602
|
+
tile: boolean;
|
|
42066
42603
|
density: Density;
|
|
42067
42604
|
modelValue: number;
|
|
42068
42605
|
nextIcon: IconValue;
|
|
@@ -42123,6 +42660,7 @@ declare const VPagination: {
|
|
|
42123
42660
|
tag: string;
|
|
42124
42661
|
ellipsis: string;
|
|
42125
42662
|
rounded: string | number | boolean;
|
|
42663
|
+
tile: boolean;
|
|
42126
42664
|
density: Density;
|
|
42127
42665
|
modelValue: number;
|
|
42128
42666
|
nextIcon: IconValue;
|
|
@@ -42169,6 +42707,7 @@ declare const VPagination: {
|
|
|
42169
42707
|
size: string | number;
|
|
42170
42708
|
tag: string;
|
|
42171
42709
|
ellipsis: string;
|
|
42710
|
+
tile: boolean;
|
|
42172
42711
|
density: Density;
|
|
42173
42712
|
modelValue: number;
|
|
42174
42713
|
nextIcon: IconValue;
|
|
@@ -42229,6 +42768,7 @@ declare const VPagination: {
|
|
|
42229
42768
|
tag: string;
|
|
42230
42769
|
ellipsis: string;
|
|
42231
42770
|
rounded: string | number | boolean;
|
|
42771
|
+
tile: boolean;
|
|
42232
42772
|
density: Density;
|
|
42233
42773
|
modelValue: number;
|
|
42234
42774
|
nextIcon: IconValue;
|
|
@@ -42256,6 +42796,7 @@ declare const VPagination: {
|
|
|
42256
42796
|
size: string | number;
|
|
42257
42797
|
tag: string;
|
|
42258
42798
|
ellipsis: string;
|
|
42799
|
+
tile: boolean;
|
|
42259
42800
|
density: Density;
|
|
42260
42801
|
modelValue: number;
|
|
42261
42802
|
nextIcon: IconValue;
|
|
@@ -42322,6 +42863,7 @@ declare const VPagination: {
|
|
|
42322
42863
|
tag: string;
|
|
42323
42864
|
ellipsis: string;
|
|
42324
42865
|
rounded: string | number | boolean;
|
|
42866
|
+
tile: boolean;
|
|
42325
42867
|
density: Density;
|
|
42326
42868
|
modelValue: number;
|
|
42327
42869
|
nextIcon: IconValue;
|
|
@@ -42377,6 +42919,7 @@ declare const VPagination: {
|
|
|
42377
42919
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
42378
42920
|
default: undefined;
|
|
42379
42921
|
};
|
|
42922
|
+
tile: BooleanConstructor;
|
|
42380
42923
|
elevation: {
|
|
42381
42924
|
type: (StringConstructor | NumberConstructor)[];
|
|
42382
42925
|
validator(v: any): boolean;
|
|
@@ -42483,6 +43026,7 @@ declare const VPagination: {
|
|
|
42483
43026
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
42484
43027
|
default: undefined;
|
|
42485
43028
|
};
|
|
43029
|
+
tile: BooleanConstructor;
|
|
42486
43030
|
elevation: {
|
|
42487
43031
|
type: (StringConstructor | NumberConstructor)[];
|
|
42488
43032
|
validator(v: any): boolean;
|
|
@@ -42974,6 +43518,7 @@ declare const VProgressLinear: {
|
|
|
42974
43518
|
style: vue.StyleValue;
|
|
42975
43519
|
tag: string;
|
|
42976
43520
|
indeterminate: boolean;
|
|
43521
|
+
tile: boolean;
|
|
42977
43522
|
modelValue: string | number;
|
|
42978
43523
|
bufferValue: string | number;
|
|
42979
43524
|
clickable: boolean;
|
|
@@ -43022,6 +43567,7 @@ declare const VProgressLinear: {
|
|
|
43022
43567
|
style: vue.StyleValue;
|
|
43023
43568
|
tag: string;
|
|
43024
43569
|
indeterminate: boolean;
|
|
43570
|
+
tile: boolean;
|
|
43025
43571
|
modelValue: string | number;
|
|
43026
43572
|
bufferValue: string | number;
|
|
43027
43573
|
clickable: boolean;
|
|
@@ -43069,6 +43615,7 @@ declare const VProgressLinear: {
|
|
|
43069
43615
|
tag: string;
|
|
43070
43616
|
indeterminate: boolean;
|
|
43071
43617
|
rounded: string | number | boolean;
|
|
43618
|
+
tile: boolean;
|
|
43072
43619
|
modelValue: string | number;
|
|
43073
43620
|
bufferValue: string | number;
|
|
43074
43621
|
clickable: boolean;
|
|
@@ -43099,6 +43646,7 @@ declare const VProgressLinear: {
|
|
|
43099
43646
|
style: vue.StyleValue;
|
|
43100
43647
|
tag: string;
|
|
43101
43648
|
indeterminate: boolean;
|
|
43649
|
+
tile: boolean;
|
|
43102
43650
|
modelValue: string | number;
|
|
43103
43651
|
bufferValue: string | number;
|
|
43104
43652
|
clickable: boolean;
|
|
@@ -43146,6 +43694,7 @@ declare const VProgressLinear: {
|
|
|
43146
43694
|
tag: string;
|
|
43147
43695
|
indeterminate: boolean;
|
|
43148
43696
|
rounded: string | number | boolean;
|
|
43697
|
+
tile: boolean;
|
|
43149
43698
|
modelValue: string | number;
|
|
43150
43699
|
bufferValue: string | number;
|
|
43151
43700
|
clickable: boolean;
|
|
@@ -43166,6 +43715,7 @@ declare const VProgressLinear: {
|
|
|
43166
43715
|
style: vue.StyleValue;
|
|
43167
43716
|
tag: string;
|
|
43168
43717
|
indeterminate: boolean;
|
|
43718
|
+
tile: boolean;
|
|
43169
43719
|
modelValue: string | number;
|
|
43170
43720
|
bufferValue: string | number;
|
|
43171
43721
|
clickable: boolean;
|
|
@@ -43215,6 +43765,7 @@ declare const VProgressLinear: {
|
|
|
43215
43765
|
tag: string;
|
|
43216
43766
|
indeterminate: boolean;
|
|
43217
43767
|
rounded: string | number | boolean;
|
|
43768
|
+
tile: boolean;
|
|
43218
43769
|
modelValue: string | number;
|
|
43219
43770
|
bufferValue: string | number;
|
|
43220
43771
|
clickable: boolean;
|
|
@@ -43237,6 +43788,7 @@ declare const VProgressLinear: {
|
|
|
43237
43788
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
43238
43789
|
default: undefined;
|
|
43239
43790
|
};
|
|
43791
|
+
tile: BooleanConstructor;
|
|
43240
43792
|
location: {
|
|
43241
43793
|
type: vue.PropType<NonNullable<Anchor>>;
|
|
43242
43794
|
default: NonNullable<Anchor>;
|
|
@@ -43286,6 +43838,7 @@ declare const VProgressLinear: {
|
|
|
43286
43838
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
43287
43839
|
default: undefined;
|
|
43288
43840
|
};
|
|
43841
|
+
tile: BooleanConstructor;
|
|
43289
43842
|
location: {
|
|
43290
43843
|
type: vue.PropType<NonNullable<Anchor>>;
|
|
43291
43844
|
default: NonNullable<Anchor>;
|
|
@@ -44261,6 +44814,7 @@ declare const VRangeSlider: {
|
|
|
44261
44814
|
step: string | number;
|
|
44262
44815
|
elevation: NonNullable<string | number>;
|
|
44263
44816
|
messages: string | readonly string[];
|
|
44817
|
+
tile: boolean;
|
|
44264
44818
|
density: Density;
|
|
44265
44819
|
modelValue: readonly (string | number)[];
|
|
44266
44820
|
ripple: boolean;
|
|
@@ -44364,6 +44918,7 @@ declare const VRangeSlider: {
|
|
|
44364
44918
|
step: string | number;
|
|
44365
44919
|
elevation: NonNullable<string | number>;
|
|
44366
44920
|
messages: string | readonly string[];
|
|
44921
|
+
tile: boolean;
|
|
44367
44922
|
density: Density;
|
|
44368
44923
|
modelValue: readonly (string | number)[];
|
|
44369
44924
|
ripple: boolean;
|
|
@@ -44463,6 +45018,7 @@ declare const VRangeSlider: {
|
|
|
44463
45018
|
elevation: NonNullable<string | number>;
|
|
44464
45019
|
messages: string | readonly string[];
|
|
44465
45020
|
rounded: string | number | boolean;
|
|
45021
|
+
tile: boolean;
|
|
44466
45022
|
density: Density;
|
|
44467
45023
|
modelValue: readonly (string | number)[];
|
|
44468
45024
|
ripple: boolean;
|
|
@@ -44528,6 +45084,7 @@ declare const VRangeSlider: {
|
|
|
44528
45084
|
step: string | number;
|
|
44529
45085
|
elevation: NonNullable<string | number>;
|
|
44530
45086
|
messages: string | readonly string[];
|
|
45087
|
+
tile: boolean;
|
|
44531
45088
|
density: Density;
|
|
44532
45089
|
modelValue: readonly (string | number)[];
|
|
44533
45090
|
ripple: boolean;
|
|
@@ -44627,6 +45184,7 @@ declare const VRangeSlider: {
|
|
|
44627
45184
|
elevation: NonNullable<string | number>;
|
|
44628
45185
|
messages: string | readonly string[];
|
|
44629
45186
|
rounded: string | number | boolean;
|
|
45187
|
+
tile: boolean;
|
|
44630
45188
|
density: Density;
|
|
44631
45189
|
modelValue: readonly (string | number)[];
|
|
44632
45190
|
ripple: boolean;
|
|
@@ -44659,6 +45217,7 @@ declare const VRangeSlider: {
|
|
|
44659
45217
|
step: string | number;
|
|
44660
45218
|
elevation: NonNullable<string | number>;
|
|
44661
45219
|
messages: string | readonly string[];
|
|
45220
|
+
tile: boolean;
|
|
44662
45221
|
density: Density;
|
|
44663
45222
|
modelValue: readonly (string | number)[];
|
|
44664
45223
|
ripple: boolean;
|
|
@@ -44763,6 +45322,7 @@ declare const VRangeSlider: {
|
|
|
44763
45322
|
elevation: NonNullable<string | number>;
|
|
44764
45323
|
messages: string | readonly string[];
|
|
44765
45324
|
rounded: string | number | boolean;
|
|
45325
|
+
tile: boolean;
|
|
44766
45326
|
density: Density;
|
|
44767
45327
|
modelValue: readonly (string | number)[];
|
|
44768
45328
|
ripple: boolean;
|
|
@@ -44829,6 +45389,7 @@ declare const VRangeSlider: {
|
|
|
44829
45389
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
44830
45390
|
default: undefined;
|
|
44831
45391
|
};
|
|
45392
|
+
tile: BooleanConstructor;
|
|
44832
45393
|
disabled: {
|
|
44833
45394
|
type: PropType<boolean | null>;
|
|
44834
45395
|
default: null;
|
|
@@ -44951,6 +45512,7 @@ declare const VRangeSlider: {
|
|
|
44951
45512
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
44952
45513
|
default: undefined;
|
|
44953
45514
|
};
|
|
45515
|
+
tile: BooleanConstructor;
|
|
44954
45516
|
disabled: {
|
|
44955
45517
|
type: PropType<boolean | null>;
|
|
44956
45518
|
default: null;
|
|
@@ -45611,6 +46173,7 @@ declare const VSelect: {
|
|
|
45611
46173
|
readonly: boolean | null;
|
|
45612
46174
|
noDataText: string;
|
|
45613
46175
|
messages: string | readonly string[];
|
|
46176
|
+
tile: boolean;
|
|
45614
46177
|
density: Density;
|
|
45615
46178
|
valueComparator: typeof deepEqual;
|
|
45616
46179
|
clearIcon: IconValue;
|
|
@@ -45672,6 +46235,7 @@ declare const VSelect: {
|
|
|
45672
46235
|
tag: string;
|
|
45673
46236
|
mandatory: boolean;
|
|
45674
46237
|
rounded: string | number | boolean;
|
|
46238
|
+
tile: boolean;
|
|
45675
46239
|
density: Density;
|
|
45676
46240
|
slim: boolean;
|
|
45677
46241
|
valueComparator: typeof deepEqual;
|
|
@@ -45687,6 +46251,7 @@ declare const VSelect: {
|
|
|
45687
46251
|
disabled: boolean;
|
|
45688
46252
|
tag: string;
|
|
45689
46253
|
mandatory: boolean;
|
|
46254
|
+
tile: boolean;
|
|
45690
46255
|
density: Density;
|
|
45691
46256
|
slim: boolean;
|
|
45692
46257
|
valueComparator: typeof deepEqual;
|
|
@@ -45730,6 +46295,7 @@ declare const VSelect: {
|
|
|
45730
46295
|
disabled: boolean;
|
|
45731
46296
|
tag: string;
|
|
45732
46297
|
mandatory: boolean;
|
|
46298
|
+
tile: boolean;
|
|
45733
46299
|
density: Density;
|
|
45734
46300
|
slim: boolean;
|
|
45735
46301
|
valueComparator: typeof deepEqual;
|
|
@@ -45768,7 +46334,7 @@ declare const VSelect: {
|
|
|
45768
46334
|
value: boolean;
|
|
45769
46335
|
path: unknown[];
|
|
45770
46336
|
}) => any) | undefined;
|
|
45771
|
-
}, "variant" | "nav" | "style" | "disabled" | "tag" | "mandatory" | "rounded" | "density" | "slim" | "valueComparator" | "selectStrategy" | "openStrategy" | "lines" | "returnObject" | "itemType"> & {
|
|
46337
|
+
}, "variant" | "nav" | "style" | "disabled" | "tag" | "mandatory" | "rounded" | "tile" | "density" | "slim" | "valueComparator" | "selectStrategy" | "openStrategy" | "lines" | "returnObject" | "itemType"> & {
|
|
45772
46338
|
items?: readonly any[] | undefined;
|
|
45773
46339
|
itemTitle?: SelectItemKey<any>;
|
|
45774
46340
|
itemValue?: SelectItemKey<any>;
|
|
@@ -46148,6 +46714,7 @@ declare const VSelect: {
|
|
|
46148
46714
|
readonly: boolean | null;
|
|
46149
46715
|
noDataText: string;
|
|
46150
46716
|
messages: string | readonly string[];
|
|
46717
|
+
tile: boolean;
|
|
46151
46718
|
density: Density;
|
|
46152
46719
|
valueComparator: typeof deepEqual;
|
|
46153
46720
|
clearIcon: IconValue;
|
|
@@ -46209,6 +46776,7 @@ declare const VSelect: {
|
|
|
46209
46776
|
tag: string;
|
|
46210
46777
|
mandatory: boolean;
|
|
46211
46778
|
rounded: string | number | boolean;
|
|
46779
|
+
tile: boolean;
|
|
46212
46780
|
density: Density;
|
|
46213
46781
|
slim: boolean;
|
|
46214
46782
|
valueComparator: typeof deepEqual;
|
|
@@ -46224,6 +46792,7 @@ declare const VSelect: {
|
|
|
46224
46792
|
disabled: boolean;
|
|
46225
46793
|
tag: string;
|
|
46226
46794
|
mandatory: boolean;
|
|
46795
|
+
tile: boolean;
|
|
46227
46796
|
density: Density;
|
|
46228
46797
|
slim: boolean;
|
|
46229
46798
|
valueComparator: typeof deepEqual;
|
|
@@ -46267,6 +46836,7 @@ declare const VSelect: {
|
|
|
46267
46836
|
disabled: boolean;
|
|
46268
46837
|
tag: string;
|
|
46269
46838
|
mandatory: boolean;
|
|
46839
|
+
tile: boolean;
|
|
46270
46840
|
density: Density;
|
|
46271
46841
|
slim: boolean;
|
|
46272
46842
|
valueComparator: typeof deepEqual;
|
|
@@ -46305,7 +46875,7 @@ declare const VSelect: {
|
|
|
46305
46875
|
value: boolean;
|
|
46306
46876
|
path: unknown[];
|
|
46307
46877
|
}) => any) | undefined;
|
|
46308
|
-
}, "variant" | "nav" | "style" | "disabled" | "tag" | "mandatory" | "rounded" | "density" | "slim" | "valueComparator" | "selectStrategy" | "openStrategy" | "lines" | "returnObject" | "itemType"> & {
|
|
46878
|
+
}, "variant" | "nav" | "style" | "disabled" | "tag" | "mandatory" | "rounded" | "tile" | "density" | "slim" | "valueComparator" | "selectStrategy" | "openStrategy" | "lines" | "returnObject" | "itemType"> & {
|
|
46309
46879
|
items?: readonly any[] | undefined;
|
|
46310
46880
|
itemTitle?: SelectItemKey<any>;
|
|
46311
46881
|
itemValue?: SelectItemKey<any>;
|
|
@@ -46682,6 +47252,7 @@ declare const VSelect: {
|
|
|
46682
47252
|
noDataText: string;
|
|
46683
47253
|
messages: string | readonly string[];
|
|
46684
47254
|
rounded: string | number | boolean;
|
|
47255
|
+
tile: boolean;
|
|
46685
47256
|
density: Density;
|
|
46686
47257
|
valueComparator: typeof deepEqual;
|
|
46687
47258
|
clearIcon: IconValue;
|
|
@@ -46795,6 +47366,7 @@ declare const VSelect: {
|
|
|
46795
47366
|
readonly: boolean | null;
|
|
46796
47367
|
noDataText: string;
|
|
46797
47368
|
messages: string | readonly string[];
|
|
47369
|
+
tile: boolean;
|
|
46798
47370
|
density: Density;
|
|
46799
47371
|
valueComparator: typeof deepEqual;
|
|
46800
47372
|
clearIcon: IconValue;
|
|
@@ -46856,6 +47428,7 @@ declare const VSelect: {
|
|
|
46856
47428
|
tag: string;
|
|
46857
47429
|
mandatory: boolean;
|
|
46858
47430
|
rounded: string | number | boolean;
|
|
47431
|
+
tile: boolean;
|
|
46859
47432
|
density: Density;
|
|
46860
47433
|
slim: boolean;
|
|
46861
47434
|
valueComparator: typeof deepEqual;
|
|
@@ -46871,6 +47444,7 @@ declare const VSelect: {
|
|
|
46871
47444
|
disabled: boolean;
|
|
46872
47445
|
tag: string;
|
|
46873
47446
|
mandatory: boolean;
|
|
47447
|
+
tile: boolean;
|
|
46874
47448
|
density: Density;
|
|
46875
47449
|
slim: boolean;
|
|
46876
47450
|
valueComparator: typeof deepEqual;
|
|
@@ -46914,6 +47488,7 @@ declare const VSelect: {
|
|
|
46914
47488
|
disabled: boolean;
|
|
46915
47489
|
tag: string;
|
|
46916
47490
|
mandatory: boolean;
|
|
47491
|
+
tile: boolean;
|
|
46917
47492
|
density: Density;
|
|
46918
47493
|
slim: boolean;
|
|
46919
47494
|
valueComparator: typeof deepEqual;
|
|
@@ -46952,7 +47527,7 @@ declare const VSelect: {
|
|
|
46952
47527
|
value: boolean;
|
|
46953
47528
|
path: unknown[];
|
|
46954
47529
|
}) => any) | undefined;
|
|
46955
|
-
}, "variant" | "nav" | "style" | "disabled" | "tag" | "mandatory" | "rounded" | "density" | "slim" | "valueComparator" | "selectStrategy" | "openStrategy" | "lines" | "returnObject" | "itemType"> & {
|
|
47530
|
+
}, "variant" | "nav" | "style" | "disabled" | "tag" | "mandatory" | "rounded" | "tile" | "density" | "slim" | "valueComparator" | "selectStrategy" | "openStrategy" | "lines" | "returnObject" | "itemType"> & {
|
|
46956
47531
|
items?: readonly any[] | undefined;
|
|
46957
47532
|
itemTitle?: SelectItemKey<any>;
|
|
46958
47533
|
itemValue?: SelectItemKey<any>;
|
|
@@ -47329,6 +47904,7 @@ declare const VSelect: {
|
|
|
47329
47904
|
noDataText: string;
|
|
47330
47905
|
messages: string | readonly string[];
|
|
47331
47906
|
rounded: string | number | boolean;
|
|
47907
|
+
tile: boolean;
|
|
47332
47908
|
density: Density;
|
|
47333
47909
|
valueComparator: typeof deepEqual;
|
|
47334
47910
|
clearIcon: IconValue;
|
|
@@ -47379,6 +47955,7 @@ declare const VSelect: {
|
|
|
47379
47955
|
readonly: boolean | null;
|
|
47380
47956
|
noDataText: string;
|
|
47381
47957
|
messages: string | readonly string[];
|
|
47958
|
+
tile: boolean;
|
|
47382
47959
|
density: Density;
|
|
47383
47960
|
valueComparator: typeof deepEqual;
|
|
47384
47961
|
clearIcon: IconValue;
|
|
@@ -47440,6 +48017,7 @@ declare const VSelect: {
|
|
|
47440
48017
|
tag: string;
|
|
47441
48018
|
mandatory: boolean;
|
|
47442
48019
|
rounded: string | number | boolean;
|
|
48020
|
+
tile: boolean;
|
|
47443
48021
|
density: Density;
|
|
47444
48022
|
slim: boolean;
|
|
47445
48023
|
valueComparator: typeof deepEqual;
|
|
@@ -47455,6 +48033,7 @@ declare const VSelect: {
|
|
|
47455
48033
|
disabled: boolean;
|
|
47456
48034
|
tag: string;
|
|
47457
48035
|
mandatory: boolean;
|
|
48036
|
+
tile: boolean;
|
|
47458
48037
|
density: Density;
|
|
47459
48038
|
slim: boolean;
|
|
47460
48039
|
valueComparator: typeof deepEqual;
|
|
@@ -47498,6 +48077,7 @@ declare const VSelect: {
|
|
|
47498
48077
|
disabled: boolean;
|
|
47499
48078
|
tag: string;
|
|
47500
48079
|
mandatory: boolean;
|
|
48080
|
+
tile: boolean;
|
|
47501
48081
|
density: Density;
|
|
47502
48082
|
slim: boolean;
|
|
47503
48083
|
valueComparator: typeof deepEqual;
|
|
@@ -47536,7 +48116,7 @@ declare const VSelect: {
|
|
|
47536
48116
|
value: boolean;
|
|
47537
48117
|
path: unknown[];
|
|
47538
48118
|
}) => any) | undefined;
|
|
47539
|
-
}, "variant" | "nav" | "style" | "disabled" | "tag" | "mandatory" | "rounded" | "density" | "slim" | "valueComparator" | "selectStrategy" | "openStrategy" | "lines" | "returnObject" | "itemType"> & {
|
|
48119
|
+
}, "variant" | "nav" | "style" | "disabled" | "tag" | "mandatory" | "rounded" | "tile" | "density" | "slim" | "valueComparator" | "selectStrategy" | "openStrategy" | "lines" | "returnObject" | "itemType"> & {
|
|
47540
48120
|
items?: readonly any[] | undefined;
|
|
47541
48121
|
itemTitle?: SelectItemKey<any>;
|
|
47542
48122
|
itemValue?: SelectItemKey<any>;
|
|
@@ -47917,6 +48497,7 @@ declare const VSelect: {
|
|
|
47917
48497
|
noDataText: string;
|
|
47918
48498
|
messages: string | readonly string[];
|
|
47919
48499
|
rounded: string | number | boolean;
|
|
48500
|
+
tile: boolean;
|
|
47920
48501
|
density: Density;
|
|
47921
48502
|
valueComparator: typeof deepEqual;
|
|
47922
48503
|
clearIcon: IconValue;
|
|
@@ -48127,6 +48708,7 @@ declare const VSelect: {
|
|
|
48127
48708
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
48128
48709
|
default: undefined;
|
|
48129
48710
|
};
|
|
48711
|
+
tile: BooleanConstructor;
|
|
48130
48712
|
density: {
|
|
48131
48713
|
type: PropType<Density>;
|
|
48132
48714
|
default: string;
|
|
@@ -48231,6 +48813,7 @@ declare const VSelect: {
|
|
|
48231
48813
|
tag: string;
|
|
48232
48814
|
mandatory: boolean;
|
|
48233
48815
|
rounded: string | number | boolean;
|
|
48816
|
+
tile: boolean;
|
|
48234
48817
|
density: Density;
|
|
48235
48818
|
slim: boolean;
|
|
48236
48819
|
valueComparator: typeof deepEqual;
|
|
@@ -48246,6 +48829,7 @@ declare const VSelect: {
|
|
|
48246
48829
|
disabled: boolean;
|
|
48247
48830
|
tag: string;
|
|
48248
48831
|
mandatory: boolean;
|
|
48832
|
+
tile: boolean;
|
|
48249
48833
|
density: Density;
|
|
48250
48834
|
slim: boolean;
|
|
48251
48835
|
valueComparator: typeof deepEqual;
|
|
@@ -48289,6 +48873,7 @@ declare const VSelect: {
|
|
|
48289
48873
|
disabled: boolean;
|
|
48290
48874
|
tag: string;
|
|
48291
48875
|
mandatory: boolean;
|
|
48876
|
+
tile: boolean;
|
|
48292
48877
|
density: Density;
|
|
48293
48878
|
slim: boolean;
|
|
48294
48879
|
valueComparator: typeof deepEqual;
|
|
@@ -48327,7 +48912,7 @@ declare const VSelect: {
|
|
|
48327
48912
|
value: boolean;
|
|
48328
48913
|
path: unknown[];
|
|
48329
48914
|
}) => any) | undefined;
|
|
48330
|
-
}, "variant" | "nav" | "style" | "disabled" | "tag" | "mandatory" | "rounded" | "density" | "slim" | "valueComparator" | "selectStrategy" | "openStrategy" | "lines" | "returnObject" | "itemType"> & {
|
|
48915
|
+
}, "variant" | "nav" | "style" | "disabled" | "tag" | "mandatory" | "rounded" | "tile" | "density" | "slim" | "valueComparator" | "selectStrategy" | "openStrategy" | "lines" | "returnObject" | "itemType"> & {
|
|
48331
48916
|
items?: readonly any[] | undefined;
|
|
48332
48917
|
itemTitle?: SelectItemKey<any>;
|
|
48333
48918
|
itemValue?: SelectItemKey<any>;
|
|
@@ -48764,6 +49349,7 @@ declare const VSelect: {
|
|
|
48764
49349
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
48765
49350
|
default: undefined;
|
|
48766
49351
|
};
|
|
49352
|
+
tile: BooleanConstructor;
|
|
48767
49353
|
density: {
|
|
48768
49354
|
type: PropType<Density>;
|
|
48769
49355
|
default: string;
|
|
@@ -48868,6 +49454,7 @@ declare const VSelect: {
|
|
|
48868
49454
|
tag: string;
|
|
48869
49455
|
mandatory: boolean;
|
|
48870
49456
|
rounded: string | number | boolean;
|
|
49457
|
+
tile: boolean;
|
|
48871
49458
|
density: Density;
|
|
48872
49459
|
slim: boolean;
|
|
48873
49460
|
valueComparator: typeof deepEqual;
|
|
@@ -48883,6 +49470,7 @@ declare const VSelect: {
|
|
|
48883
49470
|
disabled: boolean;
|
|
48884
49471
|
tag: string;
|
|
48885
49472
|
mandatory: boolean;
|
|
49473
|
+
tile: boolean;
|
|
48886
49474
|
density: Density;
|
|
48887
49475
|
slim: boolean;
|
|
48888
49476
|
valueComparator: typeof deepEqual;
|
|
@@ -48926,6 +49514,7 @@ declare const VSelect: {
|
|
|
48926
49514
|
disabled: boolean;
|
|
48927
49515
|
tag: string;
|
|
48928
49516
|
mandatory: boolean;
|
|
49517
|
+
tile: boolean;
|
|
48929
49518
|
density: Density;
|
|
48930
49519
|
slim: boolean;
|
|
48931
49520
|
valueComparator: typeof deepEqual;
|
|
@@ -48964,7 +49553,7 @@ declare const VSelect: {
|
|
|
48964
49553
|
value: boolean;
|
|
48965
49554
|
path: unknown[];
|
|
48966
49555
|
}) => any) | undefined;
|
|
48967
|
-
}, "variant" | "nav" | "style" | "disabled" | "tag" | "mandatory" | "rounded" | "density" | "slim" | "valueComparator" | "selectStrategy" | "openStrategy" | "lines" | "returnObject" | "itemType"> & {
|
|
49556
|
+
}, "variant" | "nav" | "style" | "disabled" | "tag" | "mandatory" | "rounded" | "tile" | "density" | "slim" | "valueComparator" | "selectStrategy" | "openStrategy" | "lines" | "returnObject" | "itemType"> & {
|
|
48968
49557
|
items?: readonly any[] | undefined;
|
|
48969
49558
|
itemTitle?: SelectItemKey<any>;
|
|
48970
49559
|
itemValue?: SelectItemKey<any>;
|
|
@@ -49336,6 +49925,7 @@ declare const VSheet: {
|
|
|
49336
49925
|
new (...args: any[]): vue.CreateComponentPublicInstance<{
|
|
49337
49926
|
style: vue.StyleValue;
|
|
49338
49927
|
tag: string;
|
|
49928
|
+
tile: boolean;
|
|
49339
49929
|
} & {
|
|
49340
49930
|
location?: Anchor | undefined;
|
|
49341
49931
|
height?: string | number | undefined;
|
|
@@ -49363,6 +49953,7 @@ declare const VSheet: {
|
|
|
49363
49953
|
}, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Record<string, any>, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
|
49364
49954
|
style: vue.StyleValue;
|
|
49365
49955
|
tag: string;
|
|
49956
|
+
tile: boolean;
|
|
49366
49957
|
} & {
|
|
49367
49958
|
location?: Anchor | undefined;
|
|
49368
49959
|
height?: string | number | undefined;
|
|
@@ -49391,6 +49982,7 @@ declare const VSheet: {
|
|
|
49391
49982
|
style: vue.StyleValue;
|
|
49392
49983
|
tag: string;
|
|
49393
49984
|
rounded: string | number | boolean;
|
|
49985
|
+
tile: boolean;
|
|
49394
49986
|
}, true, {}, vue.SlotsType<Partial<{
|
|
49395
49987
|
default: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
49396
49988
|
[key: string]: any;
|
|
@@ -49405,6 +49997,7 @@ declare const VSheet: {
|
|
|
49405
49997
|
}, {
|
|
49406
49998
|
style: vue.StyleValue;
|
|
49407
49999
|
tag: string;
|
|
50000
|
+
tile: boolean;
|
|
49408
50001
|
} & {
|
|
49409
50002
|
location?: Anchor | undefined;
|
|
49410
50003
|
height?: string | number | undefined;
|
|
@@ -49433,6 +50026,7 @@ declare const VSheet: {
|
|
|
49433
50026
|
style: vue.StyleValue;
|
|
49434
50027
|
tag: string;
|
|
49435
50028
|
rounded: string | number | boolean;
|
|
50029
|
+
tile: boolean;
|
|
49436
50030
|
}>;
|
|
49437
50031
|
__isFragment?: undefined;
|
|
49438
50032
|
__isTeleport?: undefined;
|
|
@@ -49440,6 +50034,7 @@ declare const VSheet: {
|
|
|
49440
50034
|
} & vue.ComponentOptionsBase<{
|
|
49441
50035
|
style: vue.StyleValue;
|
|
49442
50036
|
tag: string;
|
|
50037
|
+
tile: boolean;
|
|
49443
50038
|
} & {
|
|
49444
50039
|
location?: Anchor | undefined;
|
|
49445
50040
|
height?: string | number | undefined;
|
|
@@ -49468,6 +50063,7 @@ declare const VSheet: {
|
|
|
49468
50063
|
style: vue.StyleValue;
|
|
49469
50064
|
tag: string;
|
|
49470
50065
|
rounded: string | number | boolean;
|
|
50066
|
+
tile: boolean;
|
|
49471
50067
|
}, {}, string, vue.SlotsType<Partial<{
|
|
49472
50068
|
default: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
49473
50069
|
[key: string]: any;
|
|
@@ -49482,6 +50078,7 @@ declare const VSheet: {
|
|
|
49482
50078
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
49483
50079
|
default: undefined;
|
|
49484
50080
|
};
|
|
50081
|
+
tile: BooleanConstructor;
|
|
49485
50082
|
position: {
|
|
49486
50083
|
type: vue.PropType<"fixed" | "absolute" | "static" | "sticky" | "relative">;
|
|
49487
50084
|
validator: (v: any) => boolean;
|
|
@@ -49514,6 +50111,7 @@ declare const VSheet: {
|
|
|
49514
50111
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
49515
50112
|
default: undefined;
|
|
49516
50113
|
};
|
|
50114
|
+
tile: BooleanConstructor;
|
|
49517
50115
|
position: {
|
|
49518
50116
|
type: vue.PropType<"fixed" | "absolute" | "static" | "sticky" | "relative">;
|
|
49519
50117
|
validator: (v: any) => boolean;
|
|
@@ -50205,6 +50803,7 @@ declare const VSlider: {
|
|
|
50205
50803
|
step: string | number;
|
|
50206
50804
|
elevation: NonNullable<string | number>;
|
|
50207
50805
|
messages: string | readonly string[];
|
|
50806
|
+
tile: boolean;
|
|
50208
50807
|
density: Density;
|
|
50209
50808
|
modelValue: string | number;
|
|
50210
50809
|
ripple: boolean;
|
|
@@ -50307,6 +50906,7 @@ declare const VSlider: {
|
|
|
50307
50906
|
step: string | number;
|
|
50308
50907
|
elevation: NonNullable<string | number>;
|
|
50309
50908
|
messages: string | readonly string[];
|
|
50909
|
+
tile: boolean;
|
|
50310
50910
|
density: Density;
|
|
50311
50911
|
modelValue: string | number;
|
|
50312
50912
|
ripple: boolean;
|
|
@@ -50405,6 +51005,7 @@ declare const VSlider: {
|
|
|
50405
51005
|
elevation: NonNullable<string | number>;
|
|
50406
51006
|
messages: string | readonly string[];
|
|
50407
51007
|
rounded: string | number | boolean;
|
|
51008
|
+
tile: boolean;
|
|
50408
51009
|
density: Density;
|
|
50409
51010
|
modelValue: string | number;
|
|
50410
51011
|
ripple: boolean;
|
|
@@ -50469,6 +51070,7 @@ declare const VSlider: {
|
|
|
50469
51070
|
step: string | number;
|
|
50470
51071
|
elevation: NonNullable<string | number>;
|
|
50471
51072
|
messages: string | readonly string[];
|
|
51073
|
+
tile: boolean;
|
|
50472
51074
|
density: Density;
|
|
50473
51075
|
modelValue: string | number;
|
|
50474
51076
|
ripple: boolean;
|
|
@@ -50567,6 +51169,7 @@ declare const VSlider: {
|
|
|
50567
51169
|
elevation: NonNullable<string | number>;
|
|
50568
51170
|
messages: string | readonly string[];
|
|
50569
51171
|
rounded: string | number | boolean;
|
|
51172
|
+
tile: boolean;
|
|
50570
51173
|
density: Density;
|
|
50571
51174
|
modelValue: string | number;
|
|
50572
51175
|
ripple: boolean;
|
|
@@ -50598,6 +51201,7 @@ declare const VSlider: {
|
|
|
50598
51201
|
step: string | number;
|
|
50599
51202
|
elevation: NonNullable<string | number>;
|
|
50600
51203
|
messages: string | readonly string[];
|
|
51204
|
+
tile: boolean;
|
|
50601
51205
|
density: Density;
|
|
50602
51206
|
modelValue: string | number;
|
|
50603
51207
|
ripple: boolean;
|
|
@@ -50701,6 +51305,7 @@ declare const VSlider: {
|
|
|
50701
51305
|
elevation: NonNullable<string | number>;
|
|
50702
51306
|
messages: string | readonly string[];
|
|
50703
51307
|
rounded: string | number | boolean;
|
|
51308
|
+
tile: boolean;
|
|
50704
51309
|
density: Density;
|
|
50705
51310
|
modelValue: string | number;
|
|
50706
51311
|
ripple: boolean;
|
|
@@ -50825,6 +51430,7 @@ declare const VSlider: {
|
|
|
50825
51430
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
50826
51431
|
default: undefined;
|
|
50827
51432
|
};
|
|
51433
|
+
tile: BooleanConstructor;
|
|
50828
51434
|
max: {
|
|
50829
51435
|
type: (StringConstructor | NumberConstructor)[];
|
|
50830
51436
|
default: number;
|
|
@@ -50946,6 +51552,7 @@ declare const VSlider: {
|
|
|
50946
51552
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
50947
51553
|
default: undefined;
|
|
50948
51554
|
};
|
|
51555
|
+
tile: BooleanConstructor;
|
|
50949
51556
|
max: {
|
|
50950
51557
|
type: (StringConstructor | NumberConstructor)[];
|
|
50951
51558
|
default: number;
|
|
@@ -51006,6 +51613,7 @@ declare const VSnackbar: {
|
|
|
51006
51613
|
disabled: boolean;
|
|
51007
51614
|
timeout: string | number;
|
|
51008
51615
|
vertical: boolean;
|
|
51616
|
+
tile: boolean;
|
|
51009
51617
|
modelValue: boolean;
|
|
51010
51618
|
locationStrategy: "connected" | "static" | ((data: LocationStrategyData, props: StrategyProps, contentStyles: vue.Ref<Record<string, string>>) => {
|
|
51011
51619
|
updateLocation: (e: Event) => void;
|
|
@@ -51527,6 +52135,7 @@ declare const VSnackbar: {
|
|
|
51527
52135
|
disabled: boolean;
|
|
51528
52136
|
timeout: string | number;
|
|
51529
52137
|
vertical: boolean;
|
|
52138
|
+
tile: boolean;
|
|
51530
52139
|
modelValue: boolean;
|
|
51531
52140
|
locationStrategy: "connected" | "static" | ((data: LocationStrategyData, props: StrategyProps, contentStyles: vue.Ref<Record<string, string>>) => {
|
|
51532
52141
|
updateLocation: (e: Event) => void;
|
|
@@ -51606,6 +52215,7 @@ declare const VSnackbar: {
|
|
|
51606
52215
|
timeout: string | number;
|
|
51607
52216
|
vertical: boolean;
|
|
51608
52217
|
rounded: string | number | boolean;
|
|
52218
|
+
tile: boolean;
|
|
51609
52219
|
modelValue: boolean;
|
|
51610
52220
|
locationStrategy: "connected" | "static" | ((data: LocationStrategyData, props: StrategyProps, contentStyles: vue.Ref<Record<string, string>>) => {
|
|
51611
52221
|
updateLocation: (e: Event) => void;
|
|
@@ -51655,6 +52265,7 @@ declare const VSnackbar: {
|
|
|
51655
52265
|
disabled: boolean;
|
|
51656
52266
|
timeout: string | number;
|
|
51657
52267
|
vertical: boolean;
|
|
52268
|
+
tile: boolean;
|
|
51658
52269
|
modelValue: boolean;
|
|
51659
52270
|
locationStrategy: "connected" | "static" | ((data: LocationStrategyData, props: StrategyProps, contentStyles: vue.Ref<Record<string, string>>) => {
|
|
51660
52271
|
updateLocation: (e: Event) => void;
|
|
@@ -52175,6 +52786,7 @@ declare const VSnackbar: {
|
|
|
52175
52786
|
timeout: string | number;
|
|
52176
52787
|
vertical: boolean;
|
|
52177
52788
|
rounded: string | number | boolean;
|
|
52789
|
+
tile: boolean;
|
|
52178
52790
|
modelValue: boolean;
|
|
52179
52791
|
locationStrategy: "connected" | "static" | ((data: LocationStrategyData, props: StrategyProps, contentStyles: vue.Ref<Record<string, string>>) => {
|
|
52180
52792
|
updateLocation: (e: Event) => void;
|
|
@@ -52205,6 +52817,7 @@ declare const VSnackbar: {
|
|
|
52205
52817
|
disabled: boolean;
|
|
52206
52818
|
timeout: string | number;
|
|
52207
52819
|
vertical: boolean;
|
|
52820
|
+
tile: boolean;
|
|
52208
52821
|
modelValue: boolean;
|
|
52209
52822
|
locationStrategy: "connected" | "static" | ((data: LocationStrategyData, props: StrategyProps, contentStyles: vue.Ref<Record<string, string>>) => {
|
|
52210
52823
|
updateLocation: (e: Event) => void;
|
|
@@ -52727,6 +53340,7 @@ declare const VSnackbar: {
|
|
|
52727
53340
|
timeout: string | number;
|
|
52728
53341
|
vertical: boolean;
|
|
52729
53342
|
rounded: string | number | boolean;
|
|
53343
|
+
tile: boolean;
|
|
52730
53344
|
modelValue: boolean;
|
|
52731
53345
|
locationStrategy: "connected" | "static" | ((data: LocationStrategyData, props: StrategyProps, contentStyles: vue.Ref<Record<string, string>>) => {
|
|
52732
53346
|
updateLocation: (e: Event) => void;
|
|
@@ -52843,6 +53457,7 @@ declare const VSnackbar: {
|
|
|
52843
53457
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
52844
53458
|
default: undefined;
|
|
52845
53459
|
};
|
|
53460
|
+
tile: BooleanConstructor;
|
|
52846
53461
|
position: {
|
|
52847
53462
|
type: vue.PropType<"fixed" | "absolute" | "static" | "sticky" | "relative">;
|
|
52848
53463
|
validator: (v: any) => boolean;
|
|
@@ -52943,6 +53558,7 @@ declare const VSnackbar: {
|
|
|
52943
53558
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
52944
53559
|
default: undefined;
|
|
52945
53560
|
};
|
|
53561
|
+
tile: BooleanConstructor;
|
|
52946
53562
|
position: {
|
|
52947
53563
|
type: vue.PropType<"fixed" | "absolute" | "static" | "sticky" | "relative">;
|
|
52948
53564
|
validator: (v: any) => boolean;
|
|
@@ -53297,6 +53913,7 @@ declare const VStepper: {
|
|
|
53297
53913
|
tag: string;
|
|
53298
53914
|
mandatory: NonNullable<boolean | "force">;
|
|
53299
53915
|
items: readonly StepperItem[];
|
|
53916
|
+
tile: boolean;
|
|
53300
53917
|
selectedClass: string;
|
|
53301
53918
|
itemTitle: string;
|
|
53302
53919
|
itemValue: string;
|
|
@@ -53382,6 +53999,7 @@ declare const VStepper: {
|
|
|
53382
53999
|
tag: string;
|
|
53383
54000
|
mandatory: NonNullable<boolean | "force">;
|
|
53384
54001
|
items: readonly StepperItem[];
|
|
54002
|
+
tile: boolean;
|
|
53385
54003
|
selectedClass: string;
|
|
53386
54004
|
itemTitle: string;
|
|
53387
54005
|
itemValue: string;
|
|
@@ -53463,6 +54081,7 @@ declare const VStepper: {
|
|
|
53463
54081
|
mandatory: NonNullable<boolean | "force">;
|
|
53464
54082
|
items: readonly StepperItem[];
|
|
53465
54083
|
rounded: string | number | boolean;
|
|
54084
|
+
tile: boolean;
|
|
53466
54085
|
modelValue: any;
|
|
53467
54086
|
selectedClass: string;
|
|
53468
54087
|
itemTitle: string;
|
|
@@ -53526,6 +54145,7 @@ declare const VStepper: {
|
|
|
53526
54145
|
tag: string;
|
|
53527
54146
|
mandatory: NonNullable<boolean | "force">;
|
|
53528
54147
|
items: readonly StepperItem[];
|
|
54148
|
+
tile: boolean;
|
|
53529
54149
|
selectedClass: string;
|
|
53530
54150
|
itemTitle: string;
|
|
53531
54151
|
itemValue: string;
|
|
@@ -53610,6 +54230,7 @@ declare const VStepper: {
|
|
|
53610
54230
|
mandatory: NonNullable<boolean | "force">;
|
|
53611
54231
|
items: readonly StepperItem[];
|
|
53612
54232
|
rounded: string | number | boolean;
|
|
54233
|
+
tile: boolean;
|
|
53613
54234
|
modelValue: any;
|
|
53614
54235
|
selectedClass: string;
|
|
53615
54236
|
itemTitle: string;
|
|
@@ -53633,6 +54254,7 @@ declare const VStepper: {
|
|
|
53633
54254
|
tag: string;
|
|
53634
54255
|
mandatory: NonNullable<boolean | "force">;
|
|
53635
54256
|
items: readonly StepperItem[];
|
|
54257
|
+
tile: boolean;
|
|
53636
54258
|
selectedClass: string;
|
|
53637
54259
|
itemTitle: string;
|
|
53638
54260
|
itemValue: string;
|
|
@@ -53719,6 +54341,7 @@ declare const VStepper: {
|
|
|
53719
54341
|
mandatory: NonNullable<boolean | "force">;
|
|
53720
54342
|
items: readonly StepperItem[];
|
|
53721
54343
|
rounded: string | number | boolean;
|
|
54344
|
+
tile: boolean;
|
|
53722
54345
|
modelValue: any;
|
|
53723
54346
|
selectedClass: string;
|
|
53724
54347
|
itemTitle: string;
|
|
@@ -53784,6 +54407,7 @@ declare const VStepper: {
|
|
|
53784
54407
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
53785
54408
|
default: undefined;
|
|
53786
54409
|
};
|
|
54410
|
+
tile: BooleanConstructor;
|
|
53787
54411
|
position: {
|
|
53788
54412
|
type: PropType<"fixed" | "absolute" | "static" | "sticky" | "relative">;
|
|
53789
54413
|
validator: (v: any) => boolean;
|
|
@@ -53858,6 +54482,7 @@ declare const VStepper: {
|
|
|
53858
54482
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
53859
54483
|
default: undefined;
|
|
53860
54484
|
};
|
|
54485
|
+
tile: BooleanConstructor;
|
|
53861
54486
|
position: {
|
|
53862
54487
|
type: PropType<"fixed" | "absolute" | "static" | "sticky" | "relative">;
|
|
53863
54488
|
validator: (v: any) => boolean;
|
|
@@ -55218,6 +55843,7 @@ declare const VSystemBar: {
|
|
|
55218
55843
|
order: string | number;
|
|
55219
55844
|
style: vue.StyleValue;
|
|
55220
55845
|
tag: string;
|
|
55846
|
+
tile: boolean;
|
|
55221
55847
|
} & {
|
|
55222
55848
|
height?: string | number | undefined;
|
|
55223
55849
|
name?: string | undefined;
|
|
@@ -55241,6 +55867,7 @@ declare const VSystemBar: {
|
|
|
55241
55867
|
order: string | number;
|
|
55242
55868
|
style: vue.StyleValue;
|
|
55243
55869
|
tag: string;
|
|
55870
|
+
tile: boolean;
|
|
55244
55871
|
} & {
|
|
55245
55872
|
height?: string | number | undefined;
|
|
55246
55873
|
name?: string | undefined;
|
|
@@ -55265,6 +55892,7 @@ declare const VSystemBar: {
|
|
|
55265
55892
|
style: vue.StyleValue;
|
|
55266
55893
|
tag: string;
|
|
55267
55894
|
rounded: string | number | boolean;
|
|
55895
|
+
tile: boolean;
|
|
55268
55896
|
}, true, {}, vue.SlotsType<Partial<{
|
|
55269
55897
|
default: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
55270
55898
|
[key: string]: any;
|
|
@@ -55282,6 +55910,7 @@ declare const VSystemBar: {
|
|
|
55282
55910
|
order: string | number;
|
|
55283
55911
|
style: vue.StyleValue;
|
|
55284
55912
|
tag: string;
|
|
55913
|
+
tile: boolean;
|
|
55285
55914
|
} & {
|
|
55286
55915
|
height?: string | number | undefined;
|
|
55287
55916
|
name?: string | undefined;
|
|
@@ -55306,6 +55935,7 @@ declare const VSystemBar: {
|
|
|
55306
55935
|
style: vue.StyleValue;
|
|
55307
55936
|
tag: string;
|
|
55308
55937
|
rounded: string | number | boolean;
|
|
55938
|
+
tile: boolean;
|
|
55309
55939
|
}>;
|
|
55310
55940
|
__isFragment?: undefined;
|
|
55311
55941
|
__isTeleport?: undefined;
|
|
@@ -55316,6 +55946,7 @@ declare const VSystemBar: {
|
|
|
55316
55946
|
order: string | number;
|
|
55317
55947
|
style: vue.StyleValue;
|
|
55318
55948
|
tag: string;
|
|
55949
|
+
tile: boolean;
|
|
55319
55950
|
} & {
|
|
55320
55951
|
height?: string | number | undefined;
|
|
55321
55952
|
name?: string | undefined;
|
|
@@ -55340,6 +55971,7 @@ declare const VSystemBar: {
|
|
|
55340
55971
|
style: vue.StyleValue;
|
|
55341
55972
|
tag: string;
|
|
55342
55973
|
rounded: string | number | boolean;
|
|
55974
|
+
tile: boolean;
|
|
55343
55975
|
}, {}, string, vue.SlotsType<Partial<{
|
|
55344
55976
|
default: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
55345
55977
|
[key: string]: any;
|
|
@@ -55354,6 +55986,7 @@ declare const VSystemBar: {
|
|
|
55354
55986
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
55355
55987
|
default: undefined;
|
|
55356
55988
|
};
|
|
55989
|
+
tile: BooleanConstructor;
|
|
55357
55990
|
name: {
|
|
55358
55991
|
type: StringConstructor;
|
|
55359
55992
|
};
|
|
@@ -55384,6 +56017,7 @@ declare const VSystemBar: {
|
|
|
55384
56017
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
55385
56018
|
default: undefined;
|
|
55386
56019
|
};
|
|
56020
|
+
tile: BooleanConstructor;
|
|
55387
56021
|
name: {
|
|
55388
56022
|
type: StringConstructor;
|
|
55389
56023
|
};
|
|
@@ -55811,6 +56445,7 @@ declare const VTab: {
|
|
|
55811
56445
|
disabled: boolean;
|
|
55812
56446
|
size: string | number;
|
|
55813
56447
|
tag: string;
|
|
56448
|
+
tile: boolean;
|
|
55814
56449
|
density: Density;
|
|
55815
56450
|
selectedClass: string;
|
|
55816
56451
|
slim: boolean;
|
|
@@ -55875,6 +56510,7 @@ declare const VTab: {
|
|
|
55875
56510
|
size: string | number;
|
|
55876
56511
|
tag: string;
|
|
55877
56512
|
rounded: string | number | boolean;
|
|
56513
|
+
tile: boolean;
|
|
55878
56514
|
density: Density;
|
|
55879
56515
|
slim: boolean;
|
|
55880
56516
|
stacked: boolean;
|
|
@@ -55892,6 +56528,7 @@ declare const VTab: {
|
|
|
55892
56528
|
disabled: boolean;
|
|
55893
56529
|
size: string | number;
|
|
55894
56530
|
tag: string;
|
|
56531
|
+
tile: boolean;
|
|
55895
56532
|
density: Density;
|
|
55896
56533
|
slim: boolean;
|
|
55897
56534
|
stacked: boolean;
|
|
@@ -55952,6 +56589,7 @@ declare const VTab: {
|
|
|
55952
56589
|
disabled: boolean;
|
|
55953
56590
|
size: string | number;
|
|
55954
56591
|
tag: string;
|
|
56592
|
+
tile: boolean;
|
|
55955
56593
|
density: Density;
|
|
55956
56594
|
slim: boolean;
|
|
55957
56595
|
stacked: boolean;
|
|
@@ -56005,7 +56643,7 @@ declare const VTab: {
|
|
|
56005
56643
|
"onGroup:selected"?: ((val: {
|
|
56006
56644
|
value: boolean;
|
|
56007
56645
|
}) => any) | undefined;
|
|
56008
|
-
}, "symbol" | "replace" | "flat" | "variant" | "exact" | "block" | "active" | "style" | "disabled" | "size" | "tag" | "rounded" | "density" | "slim" | "stacked" | "ripple">;
|
|
56646
|
+
}, "symbol" | "replace" | "flat" | "variant" | "exact" | "block" | "active" | "style" | "disabled" | "size" | "tag" | "rounded" | "tile" | "density" | "slim" | "stacked" | "ripple">;
|
|
56009
56647
|
$attrs: {
|
|
56010
56648
|
[x: string]: unknown;
|
|
56011
56649
|
};
|
|
@@ -56043,6 +56681,7 @@ declare const VTab: {
|
|
|
56043
56681
|
disabled: boolean;
|
|
56044
56682
|
size: string | number;
|
|
56045
56683
|
tag: string;
|
|
56684
|
+
tile: boolean;
|
|
56046
56685
|
density: Density;
|
|
56047
56686
|
slim: boolean;
|
|
56048
56687
|
stacked: boolean;
|
|
@@ -56115,6 +56754,7 @@ declare const VTab: {
|
|
|
56115
56754
|
size: string | number;
|
|
56116
56755
|
tag: string;
|
|
56117
56756
|
rounded: string | number | boolean;
|
|
56757
|
+
tile: boolean;
|
|
56118
56758
|
density: Density;
|
|
56119
56759
|
slim: boolean;
|
|
56120
56760
|
stacked: boolean;
|
|
@@ -56165,6 +56805,7 @@ declare const VTab: {
|
|
|
56165
56805
|
disabled: boolean;
|
|
56166
56806
|
size: string | number;
|
|
56167
56807
|
tag: string;
|
|
56808
|
+
tile: boolean;
|
|
56168
56809
|
density: Density;
|
|
56169
56810
|
slim: boolean;
|
|
56170
56811
|
stacked: boolean;
|
|
@@ -56220,7 +56861,7 @@ declare const VTab: {
|
|
|
56220
56861
|
}) => any) | undefined;
|
|
56221
56862
|
}, "group"> & vue.ShallowUnwrapRef<{
|
|
56222
56863
|
group: GroupItemProvide | null;
|
|
56223
|
-
}> & {} & 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 & {
|
|
56864
|
+
}> & {} & 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 & {
|
|
56224
56865
|
replace: boolean;
|
|
56225
56866
|
fixed: boolean;
|
|
56226
56867
|
variant: NonNullable<NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">>;
|
|
@@ -56230,6 +56871,7 @@ declare const VTab: {
|
|
|
56230
56871
|
disabled: boolean;
|
|
56231
56872
|
size: string | number;
|
|
56232
56873
|
tag: string;
|
|
56874
|
+
tile: boolean;
|
|
56233
56875
|
density: Density;
|
|
56234
56876
|
selectedClass: string;
|
|
56235
56877
|
slim: boolean;
|
|
@@ -56289,6 +56931,7 @@ declare const VTab: {
|
|
|
56289
56931
|
size: string | number;
|
|
56290
56932
|
tag: string;
|
|
56291
56933
|
rounded: string | number | boolean;
|
|
56934
|
+
tile: boolean;
|
|
56292
56935
|
density: Density;
|
|
56293
56936
|
selectedClass: string;
|
|
56294
56937
|
slim: boolean;
|
|
@@ -56327,6 +56970,7 @@ declare const VTab: {
|
|
|
56327
56970
|
disabled: boolean;
|
|
56328
56971
|
size: string | number;
|
|
56329
56972
|
tag: string;
|
|
56973
|
+
tile: boolean;
|
|
56330
56974
|
density: Density;
|
|
56331
56975
|
selectedClass: string;
|
|
56332
56976
|
slim: boolean;
|
|
@@ -56391,6 +57035,7 @@ declare const VTab: {
|
|
|
56391
57035
|
size: string | number;
|
|
56392
57036
|
tag: string;
|
|
56393
57037
|
rounded: string | number | boolean;
|
|
57038
|
+
tile: boolean;
|
|
56394
57039
|
density: Density;
|
|
56395
57040
|
slim: boolean;
|
|
56396
57041
|
stacked: boolean;
|
|
@@ -56408,6 +57053,7 @@ declare const VTab: {
|
|
|
56408
57053
|
disabled: boolean;
|
|
56409
57054
|
size: string | number;
|
|
56410
57055
|
tag: string;
|
|
57056
|
+
tile: boolean;
|
|
56411
57057
|
density: Density;
|
|
56412
57058
|
slim: boolean;
|
|
56413
57059
|
stacked: boolean;
|
|
@@ -56468,6 +57114,7 @@ declare const VTab: {
|
|
|
56468
57114
|
disabled: boolean;
|
|
56469
57115
|
size: string | number;
|
|
56470
57116
|
tag: string;
|
|
57117
|
+
tile: boolean;
|
|
56471
57118
|
density: Density;
|
|
56472
57119
|
slim: boolean;
|
|
56473
57120
|
stacked: boolean;
|
|
@@ -56521,7 +57168,7 @@ declare const VTab: {
|
|
|
56521
57168
|
"onGroup:selected"?: ((val: {
|
|
56522
57169
|
value: boolean;
|
|
56523
57170
|
}) => any) | undefined;
|
|
56524
|
-
}, "symbol" | "replace" | "flat" | "variant" | "exact" | "block" | "active" | "style" | "disabled" | "size" | "tag" | "rounded" | "density" | "slim" | "stacked" | "ripple">;
|
|
57171
|
+
}, "symbol" | "replace" | "flat" | "variant" | "exact" | "block" | "active" | "style" | "disabled" | "size" | "tag" | "rounded" | "tile" | "density" | "slim" | "stacked" | "ripple">;
|
|
56525
57172
|
$attrs: {
|
|
56526
57173
|
[x: string]: unknown;
|
|
56527
57174
|
};
|
|
@@ -56559,6 +57206,7 @@ declare const VTab: {
|
|
|
56559
57206
|
disabled: boolean;
|
|
56560
57207
|
size: string | number;
|
|
56561
57208
|
tag: string;
|
|
57209
|
+
tile: boolean;
|
|
56562
57210
|
density: Density;
|
|
56563
57211
|
slim: boolean;
|
|
56564
57212
|
stacked: boolean;
|
|
@@ -56631,6 +57279,7 @@ declare const VTab: {
|
|
|
56631
57279
|
size: string | number;
|
|
56632
57280
|
tag: string;
|
|
56633
57281
|
rounded: string | number | boolean;
|
|
57282
|
+
tile: boolean;
|
|
56634
57283
|
density: Density;
|
|
56635
57284
|
slim: boolean;
|
|
56636
57285
|
stacked: boolean;
|
|
@@ -56681,6 +57330,7 @@ declare const VTab: {
|
|
|
56681
57330
|
disabled: boolean;
|
|
56682
57331
|
size: string | number;
|
|
56683
57332
|
tag: string;
|
|
57333
|
+
tile: boolean;
|
|
56684
57334
|
density: Density;
|
|
56685
57335
|
slim: boolean;
|
|
56686
57336
|
stacked: boolean;
|
|
@@ -56736,7 +57386,7 @@ declare const VTab: {
|
|
|
56736
57386
|
}) => any) | undefined;
|
|
56737
57387
|
}, "group"> & vue.ShallowUnwrapRef<{
|
|
56738
57388
|
group: GroupItemProvide | null;
|
|
56739
|
-
}> & {} & 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}`>, {}, {}, {}, {
|
|
57389
|
+
}> & {} & 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}`>, {}, {}, {}, {
|
|
56740
57390
|
replace: boolean;
|
|
56741
57391
|
fixed: boolean;
|
|
56742
57392
|
variant: NonNullable<NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">>;
|
|
@@ -56747,6 +57397,7 @@ declare const VTab: {
|
|
|
56747
57397
|
size: string | number;
|
|
56748
57398
|
tag: string;
|
|
56749
57399
|
rounded: string | number | boolean;
|
|
57400
|
+
tile: boolean;
|
|
56750
57401
|
density: Density;
|
|
56751
57402
|
selectedClass: string;
|
|
56752
57403
|
slim: boolean;
|
|
@@ -56769,6 +57420,7 @@ declare const VTab: {
|
|
|
56769
57420
|
disabled: boolean;
|
|
56770
57421
|
size: string | number;
|
|
56771
57422
|
tag: string;
|
|
57423
|
+
tile: boolean;
|
|
56772
57424
|
density: Density;
|
|
56773
57425
|
selectedClass: string;
|
|
56774
57426
|
slim: boolean;
|
|
@@ -56833,6 +57485,7 @@ declare const VTab: {
|
|
|
56833
57485
|
size: string | number;
|
|
56834
57486
|
tag: string;
|
|
56835
57487
|
rounded: string | number | boolean;
|
|
57488
|
+
tile: boolean;
|
|
56836
57489
|
density: Density;
|
|
56837
57490
|
slim: boolean;
|
|
56838
57491
|
stacked: boolean;
|
|
@@ -56850,6 +57503,7 @@ declare const VTab: {
|
|
|
56850
57503
|
disabled: boolean;
|
|
56851
57504
|
size: string | number;
|
|
56852
57505
|
tag: string;
|
|
57506
|
+
tile: boolean;
|
|
56853
57507
|
density: Density;
|
|
56854
57508
|
slim: boolean;
|
|
56855
57509
|
stacked: boolean;
|
|
@@ -56910,6 +57564,7 @@ declare const VTab: {
|
|
|
56910
57564
|
disabled: boolean;
|
|
56911
57565
|
size: string | number;
|
|
56912
57566
|
tag: string;
|
|
57567
|
+
tile: boolean;
|
|
56913
57568
|
density: Density;
|
|
56914
57569
|
slim: boolean;
|
|
56915
57570
|
stacked: boolean;
|
|
@@ -56963,7 +57618,7 @@ declare const VTab: {
|
|
|
56963
57618
|
"onGroup:selected"?: ((val: {
|
|
56964
57619
|
value: boolean;
|
|
56965
57620
|
}) => any) | undefined;
|
|
56966
|
-
}, "symbol" | "replace" | "flat" | "variant" | "exact" | "block" | "active" | "style" | "disabled" | "size" | "tag" | "rounded" | "density" | "slim" | "stacked" | "ripple">;
|
|
57621
|
+
}, "symbol" | "replace" | "flat" | "variant" | "exact" | "block" | "active" | "style" | "disabled" | "size" | "tag" | "rounded" | "tile" | "density" | "slim" | "stacked" | "ripple">;
|
|
56967
57622
|
$attrs: {
|
|
56968
57623
|
[x: string]: unknown;
|
|
56969
57624
|
};
|
|
@@ -57001,6 +57656,7 @@ declare const VTab: {
|
|
|
57001
57656
|
disabled: boolean;
|
|
57002
57657
|
size: string | number;
|
|
57003
57658
|
tag: string;
|
|
57659
|
+
tile: boolean;
|
|
57004
57660
|
density: Density;
|
|
57005
57661
|
slim: boolean;
|
|
57006
57662
|
stacked: boolean;
|
|
@@ -57073,6 +57729,7 @@ declare const VTab: {
|
|
|
57073
57729
|
size: string | number;
|
|
57074
57730
|
tag: string;
|
|
57075
57731
|
rounded: string | number | boolean;
|
|
57732
|
+
tile: boolean;
|
|
57076
57733
|
density: Density;
|
|
57077
57734
|
slim: boolean;
|
|
57078
57735
|
stacked: boolean;
|
|
@@ -57123,6 +57780,7 @@ declare const VTab: {
|
|
|
57123
57780
|
disabled: boolean;
|
|
57124
57781
|
size: string | number;
|
|
57125
57782
|
tag: string;
|
|
57783
|
+
tile: boolean;
|
|
57126
57784
|
density: Density;
|
|
57127
57785
|
slim: boolean;
|
|
57128
57786
|
stacked: boolean;
|
|
@@ -57178,7 +57836,7 @@ declare const VTab: {
|
|
|
57178
57836
|
}) => any) | undefined;
|
|
57179
57837
|
}, "group"> & vue.ShallowUnwrapRef<{
|
|
57180
57838
|
group: GroupItemProvide | null;
|
|
57181
|
-
}> & {} & 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, {
|
|
57839
|
+
}> & {} & 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, {
|
|
57182
57840
|
replace: boolean;
|
|
57183
57841
|
fixed: boolean;
|
|
57184
57842
|
variant: NonNullable<NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">>;
|
|
@@ -57189,6 +57847,7 @@ declare const VTab: {
|
|
|
57189
57847
|
size: string | number;
|
|
57190
57848
|
tag: string;
|
|
57191
57849
|
rounded: string | number | boolean;
|
|
57850
|
+
tile: boolean;
|
|
57192
57851
|
density: Density;
|
|
57193
57852
|
selectedClass: string;
|
|
57194
57853
|
slim: boolean;
|
|
@@ -57264,6 +57923,7 @@ declare const VTab: {
|
|
|
57264
57923
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
57265
57924
|
default: undefined;
|
|
57266
57925
|
};
|
|
57926
|
+
tile: BooleanConstructor;
|
|
57267
57927
|
density: {
|
|
57268
57928
|
type: PropType<Density>;
|
|
57269
57929
|
default: string;
|
|
@@ -57344,6 +58004,7 @@ declare const VTab: {
|
|
|
57344
58004
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
57345
58005
|
default: undefined;
|
|
57346
58006
|
};
|
|
58007
|
+
tile: BooleanConstructor;
|
|
57347
58008
|
density: {
|
|
57348
58009
|
type: PropType<Density>;
|
|
57349
58010
|
default: string;
|
|
@@ -57604,6 +58265,7 @@ declare const VTextarea: {
|
|
|
57604
58265
|
disabled: boolean;
|
|
57605
58266
|
readonly: boolean | null;
|
|
57606
58267
|
messages: string | readonly string[];
|
|
58268
|
+
tile: boolean;
|
|
57607
58269
|
density: Density;
|
|
57608
58270
|
clearIcon: IconValue;
|
|
57609
58271
|
focused: boolean;
|
|
@@ -57951,6 +58613,7 @@ declare const VTextarea: {
|
|
|
57951
58613
|
disabled: boolean;
|
|
57952
58614
|
readonly: boolean | null;
|
|
57953
58615
|
messages: string | readonly string[];
|
|
58616
|
+
tile: boolean;
|
|
57954
58617
|
density: Density;
|
|
57955
58618
|
clearIcon: IconValue;
|
|
57956
58619
|
focused: boolean;
|
|
@@ -58065,6 +58728,7 @@ declare const VTextarea: {
|
|
|
58065
58728
|
readonly: boolean | null;
|
|
58066
58729
|
messages: string | readonly string[];
|
|
58067
58730
|
rounded: string | number | boolean;
|
|
58731
|
+
tile: boolean;
|
|
58068
58732
|
density: Density;
|
|
58069
58733
|
clearIcon: IconValue;
|
|
58070
58734
|
focused: boolean;
|
|
@@ -58136,6 +58800,7 @@ declare const VTextarea: {
|
|
|
58136
58800
|
disabled: boolean;
|
|
58137
58801
|
readonly: boolean | null;
|
|
58138
58802
|
messages: string | readonly string[];
|
|
58803
|
+
tile: boolean;
|
|
58139
58804
|
density: Density;
|
|
58140
58805
|
clearIcon: IconValue;
|
|
58141
58806
|
focused: boolean;
|
|
@@ -58479,6 +59144,7 @@ declare const VTextarea: {
|
|
|
58479
59144
|
readonly: boolean | null;
|
|
58480
59145
|
messages: string | readonly string[];
|
|
58481
59146
|
rounded: string | number | boolean;
|
|
59147
|
+
tile: boolean;
|
|
58482
59148
|
density: Density;
|
|
58483
59149
|
clearIcon: IconValue;
|
|
58484
59150
|
focused: boolean;
|
|
@@ -58513,6 +59179,7 @@ declare const VTextarea: {
|
|
|
58513
59179
|
disabled: boolean;
|
|
58514
59180
|
readonly: boolean | null;
|
|
58515
59181
|
messages: string | readonly string[];
|
|
59182
|
+
tile: boolean;
|
|
58516
59183
|
density: Density;
|
|
58517
59184
|
clearIcon: IconValue;
|
|
58518
59185
|
focused: boolean;
|
|
@@ -58861,6 +59528,7 @@ declare const VTextarea: {
|
|
|
58861
59528
|
readonly: boolean | null;
|
|
58862
59529
|
messages: string | readonly string[];
|
|
58863
59530
|
rounded: string | number | boolean;
|
|
59531
|
+
tile: boolean;
|
|
58864
59532
|
density: Density;
|
|
58865
59533
|
clearIcon: IconValue;
|
|
58866
59534
|
focused: boolean;
|
|
@@ -58919,6 +59587,7 @@ declare const VTextarea: {
|
|
|
58919
59587
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
58920
59588
|
default: undefined;
|
|
58921
59589
|
};
|
|
59590
|
+
tile: BooleanConstructor;
|
|
58922
59591
|
loading: (StringConstructor | BooleanConstructor)[];
|
|
58923
59592
|
class: PropType<any>;
|
|
58924
59593
|
style: {
|
|
@@ -59030,6 +59699,7 @@ declare const VTextarea: {
|
|
|
59030
59699
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
59031
59700
|
default: undefined;
|
|
59032
59701
|
};
|
|
59702
|
+
tile: BooleanConstructor;
|
|
59033
59703
|
loading: (StringConstructor | BooleanConstructor)[];
|
|
59034
59704
|
class: PropType<any>;
|
|
59035
59705
|
style: {
|
|
@@ -59152,6 +59822,7 @@ declare const VTextField: {
|
|
|
59152
59822
|
disabled: boolean;
|
|
59153
59823
|
readonly: boolean | null;
|
|
59154
59824
|
messages: string | readonly string[];
|
|
59825
|
+
tile: boolean;
|
|
59155
59826
|
density: Density;
|
|
59156
59827
|
clearIcon: IconValue;
|
|
59157
59828
|
focused: boolean;
|
|
@@ -59494,6 +60165,7 @@ declare const VTextField: {
|
|
|
59494
60165
|
style: vue.StyleValue;
|
|
59495
60166
|
disabled: boolean;
|
|
59496
60167
|
rounded: string | number | boolean;
|
|
60168
|
+
tile: boolean;
|
|
59497
60169
|
clearIcon: IconValue;
|
|
59498
60170
|
focused: boolean;
|
|
59499
60171
|
centerAffix: boolean;
|
|
@@ -59509,6 +60181,7 @@ declare const VTextField: {
|
|
|
59509
60181
|
active: boolean;
|
|
59510
60182
|
style: vue.StyleValue;
|
|
59511
60183
|
disabled: boolean;
|
|
60184
|
+
tile: boolean;
|
|
59512
60185
|
clearIcon: IconValue;
|
|
59513
60186
|
focused: boolean;
|
|
59514
60187
|
clearable: boolean;
|
|
@@ -59539,6 +60212,7 @@ declare const VTextField: {
|
|
|
59539
60212
|
active: boolean;
|
|
59540
60213
|
style: vue.StyleValue;
|
|
59541
60214
|
disabled: boolean;
|
|
60215
|
+
tile: boolean;
|
|
59542
60216
|
clearIcon: IconValue;
|
|
59543
60217
|
focused: boolean;
|
|
59544
60218
|
clearable: boolean;
|
|
@@ -59564,7 +60238,7 @@ declare const VTextField: {
|
|
|
59564
60238
|
centerAffix?: boolean | undefined;
|
|
59565
60239
|
} & {
|
|
59566
60240
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
59567
|
-
}, "flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "rounded" | "clearIcon" | "focused" | "centerAffix" | "clearable" | "dirty" | "persistentClear" | "singleLine">;
|
|
60241
|
+
}, "flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "rounded" | "tile" | "clearIcon" | "focused" | "centerAffix" | "clearable" | "dirty" | "persistentClear" | "singleLine">;
|
|
59568
60242
|
$attrs: {
|
|
59569
60243
|
[x: string]: unknown;
|
|
59570
60244
|
};
|
|
@@ -59606,6 +60280,7 @@ declare const VTextField: {
|
|
|
59606
60280
|
active: boolean;
|
|
59607
60281
|
style: vue.StyleValue;
|
|
59608
60282
|
disabled: boolean;
|
|
60283
|
+
tile: boolean;
|
|
59609
60284
|
clearIcon: IconValue;
|
|
59610
60285
|
focused: boolean;
|
|
59611
60286
|
clearable: boolean;
|
|
@@ -59645,6 +60320,7 @@ declare const VTextField: {
|
|
|
59645
60320
|
style: vue.StyleValue;
|
|
59646
60321
|
disabled: boolean;
|
|
59647
60322
|
rounded: string | number | boolean;
|
|
60323
|
+
tile: boolean;
|
|
59648
60324
|
clearIcon: IconValue;
|
|
59649
60325
|
focused: boolean;
|
|
59650
60326
|
centerAffix: boolean;
|
|
@@ -59702,6 +60378,7 @@ declare const VTextField: {
|
|
|
59702
60378
|
active: boolean;
|
|
59703
60379
|
style: vue.StyleValue;
|
|
59704
60380
|
disabled: boolean;
|
|
60381
|
+
tile: boolean;
|
|
59705
60382
|
clearIcon: IconValue;
|
|
59706
60383
|
focused: boolean;
|
|
59707
60384
|
clearable: boolean;
|
|
@@ -59732,7 +60409,7 @@ declare const VTextField: {
|
|
|
59732
60409
|
}> & {} & vue.ComponentCustomProperties & {} & GenericProps<{
|
|
59733
60410
|
modelValue?: unknown;
|
|
59734
60411
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
|
59735
|
-
}, 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, {
|
|
60412
|
+
}, 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, {
|
|
59736
60413
|
'click:control': (e: MouseEvent) => true;
|
|
59737
60414
|
'mousedown:control': (e: MouseEvent) => true;
|
|
59738
60415
|
'update:focused': (focused: boolean) => true;
|
|
@@ -59750,6 +60427,7 @@ declare const VTextField: {
|
|
|
59750
60427
|
disabled: boolean;
|
|
59751
60428
|
readonly: boolean | null;
|
|
59752
60429
|
messages: string | readonly string[];
|
|
60430
|
+
tile: boolean;
|
|
59753
60431
|
density: Density;
|
|
59754
60432
|
clearIcon: IconValue;
|
|
59755
60433
|
focused: boolean;
|
|
@@ -59865,6 +60543,7 @@ declare const VTextField: {
|
|
|
59865
60543
|
readonly: boolean | null;
|
|
59866
60544
|
messages: string | readonly string[];
|
|
59867
60545
|
rounded: string | number | boolean;
|
|
60546
|
+
tile: boolean;
|
|
59868
60547
|
density: Density;
|
|
59869
60548
|
clearIcon: IconValue;
|
|
59870
60549
|
focused: boolean;
|
|
@@ -59937,6 +60616,7 @@ declare const VTextField: {
|
|
|
59937
60616
|
disabled: boolean;
|
|
59938
60617
|
readonly: boolean | null;
|
|
59939
60618
|
messages: string | readonly string[];
|
|
60619
|
+
tile: boolean;
|
|
59940
60620
|
density: Density;
|
|
59941
60621
|
clearIcon: IconValue;
|
|
59942
60622
|
focused: boolean;
|
|
@@ -60279,6 +60959,7 @@ declare const VTextField: {
|
|
|
60279
60959
|
style: vue.StyleValue;
|
|
60280
60960
|
disabled: boolean;
|
|
60281
60961
|
rounded: string | number | boolean;
|
|
60962
|
+
tile: boolean;
|
|
60282
60963
|
clearIcon: IconValue;
|
|
60283
60964
|
focused: boolean;
|
|
60284
60965
|
centerAffix: boolean;
|
|
@@ -60294,6 +60975,7 @@ declare const VTextField: {
|
|
|
60294
60975
|
active: boolean;
|
|
60295
60976
|
style: vue.StyleValue;
|
|
60296
60977
|
disabled: boolean;
|
|
60978
|
+
tile: boolean;
|
|
60297
60979
|
clearIcon: IconValue;
|
|
60298
60980
|
focused: boolean;
|
|
60299
60981
|
clearable: boolean;
|
|
@@ -60324,6 +61006,7 @@ declare const VTextField: {
|
|
|
60324
61006
|
active: boolean;
|
|
60325
61007
|
style: vue.StyleValue;
|
|
60326
61008
|
disabled: boolean;
|
|
61009
|
+
tile: boolean;
|
|
60327
61010
|
clearIcon: IconValue;
|
|
60328
61011
|
focused: boolean;
|
|
60329
61012
|
clearable: boolean;
|
|
@@ -60349,7 +61032,7 @@ declare const VTextField: {
|
|
|
60349
61032
|
centerAffix?: boolean | undefined;
|
|
60350
61033
|
} & {
|
|
60351
61034
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
60352
|
-
}, "flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "rounded" | "clearIcon" | "focused" | "centerAffix" | "clearable" | "dirty" | "persistentClear" | "singleLine">;
|
|
61035
|
+
}, "flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "rounded" | "tile" | "clearIcon" | "focused" | "centerAffix" | "clearable" | "dirty" | "persistentClear" | "singleLine">;
|
|
60353
61036
|
$attrs: {
|
|
60354
61037
|
[x: string]: unknown;
|
|
60355
61038
|
};
|
|
@@ -60391,6 +61074,7 @@ declare const VTextField: {
|
|
|
60391
61074
|
active: boolean;
|
|
60392
61075
|
style: vue.StyleValue;
|
|
60393
61076
|
disabled: boolean;
|
|
61077
|
+
tile: boolean;
|
|
60394
61078
|
clearIcon: IconValue;
|
|
60395
61079
|
focused: boolean;
|
|
60396
61080
|
clearable: boolean;
|
|
@@ -60430,6 +61114,7 @@ declare const VTextField: {
|
|
|
60430
61114
|
style: vue.StyleValue;
|
|
60431
61115
|
disabled: boolean;
|
|
60432
61116
|
rounded: string | number | boolean;
|
|
61117
|
+
tile: boolean;
|
|
60433
61118
|
clearIcon: IconValue;
|
|
60434
61119
|
focused: boolean;
|
|
60435
61120
|
centerAffix: boolean;
|
|
@@ -60487,6 +61172,7 @@ declare const VTextField: {
|
|
|
60487
61172
|
active: boolean;
|
|
60488
61173
|
style: vue.StyleValue;
|
|
60489
61174
|
disabled: boolean;
|
|
61175
|
+
tile: boolean;
|
|
60490
61176
|
clearIcon: IconValue;
|
|
60491
61177
|
focused: boolean;
|
|
60492
61178
|
clearable: boolean;
|
|
@@ -60517,7 +61203,7 @@ declare const VTextField: {
|
|
|
60517
61203
|
}> & {} & vue.ComponentCustomProperties & {} & GenericProps<{
|
|
60518
61204
|
modelValue?: unknown;
|
|
60519
61205
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
|
60520
|
-
}, 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}`>, {}, {}, {}, {
|
|
61206
|
+
}, 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}`>, {}, {}, {}, {
|
|
60521
61207
|
flat: boolean;
|
|
60522
61208
|
reverse: boolean;
|
|
60523
61209
|
variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
|
|
@@ -60531,6 +61217,7 @@ declare const VTextField: {
|
|
|
60531
61217
|
readonly: boolean | null;
|
|
60532
61218
|
messages: string | readonly string[];
|
|
60533
61219
|
rounded: string | number | boolean;
|
|
61220
|
+
tile: boolean;
|
|
60534
61221
|
density: Density;
|
|
60535
61222
|
clearIcon: IconValue;
|
|
60536
61223
|
focused: boolean;
|
|
@@ -60563,6 +61250,7 @@ declare const VTextField: {
|
|
|
60563
61250
|
disabled: boolean;
|
|
60564
61251
|
readonly: boolean | null;
|
|
60565
61252
|
messages: string | readonly string[];
|
|
61253
|
+
tile: boolean;
|
|
60566
61254
|
density: Density;
|
|
60567
61255
|
clearIcon: IconValue;
|
|
60568
61256
|
focused: boolean;
|
|
@@ -60905,6 +61593,7 @@ declare const VTextField: {
|
|
|
60905
61593
|
style: vue.StyleValue;
|
|
60906
61594
|
disabled: boolean;
|
|
60907
61595
|
rounded: string | number | boolean;
|
|
61596
|
+
tile: boolean;
|
|
60908
61597
|
clearIcon: IconValue;
|
|
60909
61598
|
focused: boolean;
|
|
60910
61599
|
centerAffix: boolean;
|
|
@@ -60920,6 +61609,7 @@ declare const VTextField: {
|
|
|
60920
61609
|
active: boolean;
|
|
60921
61610
|
style: vue.StyleValue;
|
|
60922
61611
|
disabled: boolean;
|
|
61612
|
+
tile: boolean;
|
|
60923
61613
|
clearIcon: IconValue;
|
|
60924
61614
|
focused: boolean;
|
|
60925
61615
|
clearable: boolean;
|
|
@@ -60950,6 +61640,7 @@ declare const VTextField: {
|
|
|
60950
61640
|
active: boolean;
|
|
60951
61641
|
style: vue.StyleValue;
|
|
60952
61642
|
disabled: boolean;
|
|
61643
|
+
tile: boolean;
|
|
60953
61644
|
clearIcon: IconValue;
|
|
60954
61645
|
focused: boolean;
|
|
60955
61646
|
clearable: boolean;
|
|
@@ -60975,7 +61666,7 @@ declare const VTextField: {
|
|
|
60975
61666
|
centerAffix?: boolean | undefined;
|
|
60976
61667
|
} & {
|
|
60977
61668
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
60978
|
-
}, "flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "rounded" | "clearIcon" | "focused" | "centerAffix" | "clearable" | "dirty" | "persistentClear" | "singleLine">;
|
|
61669
|
+
}, "flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "rounded" | "tile" | "clearIcon" | "focused" | "centerAffix" | "clearable" | "dirty" | "persistentClear" | "singleLine">;
|
|
60979
61670
|
$attrs: {
|
|
60980
61671
|
[x: string]: unknown;
|
|
60981
61672
|
};
|
|
@@ -61017,6 +61708,7 @@ declare const VTextField: {
|
|
|
61017
61708
|
active: boolean;
|
|
61018
61709
|
style: vue.StyleValue;
|
|
61019
61710
|
disabled: boolean;
|
|
61711
|
+
tile: boolean;
|
|
61020
61712
|
clearIcon: IconValue;
|
|
61021
61713
|
focused: boolean;
|
|
61022
61714
|
clearable: boolean;
|
|
@@ -61056,6 +61748,7 @@ declare const VTextField: {
|
|
|
61056
61748
|
style: vue.StyleValue;
|
|
61057
61749
|
disabled: boolean;
|
|
61058
61750
|
rounded: string | number | boolean;
|
|
61751
|
+
tile: boolean;
|
|
61059
61752
|
clearIcon: IconValue;
|
|
61060
61753
|
focused: boolean;
|
|
61061
61754
|
centerAffix: boolean;
|
|
@@ -61113,6 +61806,7 @@ declare const VTextField: {
|
|
|
61113
61806
|
active: boolean;
|
|
61114
61807
|
style: vue.StyleValue;
|
|
61115
61808
|
disabled: boolean;
|
|
61809
|
+
tile: boolean;
|
|
61116
61810
|
clearIcon: IconValue;
|
|
61117
61811
|
focused: boolean;
|
|
61118
61812
|
clearable: boolean;
|
|
@@ -61143,7 +61837,7 @@ declare const VTextField: {
|
|
|
61143
61837
|
}> & {} & vue.ComponentCustomProperties & {} & GenericProps<{
|
|
61144
61838
|
modelValue?: unknown;
|
|
61145
61839
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
|
61146
|
-
}, 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, {
|
|
61840
|
+
}, 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, {
|
|
61147
61841
|
'click:control': (e: MouseEvent) => true;
|
|
61148
61842
|
'mousedown:control': (e: MouseEvent) => true;
|
|
61149
61843
|
'update:focused': (focused: boolean) => true;
|
|
@@ -61162,6 +61856,7 @@ declare const VTextField: {
|
|
|
61162
61856
|
readonly: boolean | null;
|
|
61163
61857
|
messages: string | readonly string[];
|
|
61164
61858
|
rounded: string | number | boolean;
|
|
61859
|
+
tile: boolean;
|
|
61165
61860
|
density: Density;
|
|
61166
61861
|
clearIcon: IconValue;
|
|
61167
61862
|
focused: boolean;
|
|
@@ -61220,6 +61915,7 @@ declare const VTextField: {
|
|
|
61220
61915
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
61221
61916
|
default: undefined;
|
|
61222
61917
|
};
|
|
61918
|
+
tile: BooleanConstructor;
|
|
61223
61919
|
loading: (StringConstructor | BooleanConstructor)[];
|
|
61224
61920
|
class: PropType<any>;
|
|
61225
61921
|
style: {
|
|
@@ -61325,6 +62021,7 @@ declare const VTextField: {
|
|
|
61325
62021
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
61326
62022
|
default: undefined;
|
|
61327
62023
|
};
|
|
62024
|
+
tile: BooleanConstructor;
|
|
61328
62025
|
loading: (StringConstructor | BooleanConstructor)[];
|
|
61329
62026
|
class: PropType<any>;
|
|
61330
62027
|
style: {
|
|
@@ -61773,6 +62470,7 @@ declare const VTimelineItem: {
|
|
|
61773
62470
|
style: vue.StyleValue;
|
|
61774
62471
|
size: string | number;
|
|
61775
62472
|
tag: string;
|
|
62473
|
+
tile: boolean;
|
|
61776
62474
|
fillDot: boolean;
|
|
61777
62475
|
hideDot: boolean;
|
|
61778
62476
|
} & {
|
|
@@ -61810,6 +62508,7 @@ declare const VTimelineItem: {
|
|
|
61810
62508
|
style: vue.StyleValue;
|
|
61811
62509
|
size: string | number;
|
|
61812
62510
|
tag: string;
|
|
62511
|
+
tile: boolean;
|
|
61813
62512
|
fillDot: boolean;
|
|
61814
62513
|
hideDot: boolean;
|
|
61815
62514
|
} & {
|
|
@@ -61848,6 +62547,7 @@ declare const VTimelineItem: {
|
|
|
61848
62547
|
size: string | number;
|
|
61849
62548
|
tag: string;
|
|
61850
62549
|
rounded: string | number | boolean;
|
|
62550
|
+
tile: boolean;
|
|
61851
62551
|
fillDot: boolean;
|
|
61852
62552
|
hideDot: boolean;
|
|
61853
62553
|
hideOpposite: boolean;
|
|
@@ -61872,6 +62572,7 @@ declare const VTimelineItem: {
|
|
|
61872
62572
|
style: vue.StyleValue;
|
|
61873
62573
|
size: string | number;
|
|
61874
62574
|
tag: string;
|
|
62575
|
+
tile: boolean;
|
|
61875
62576
|
fillDot: boolean;
|
|
61876
62577
|
hideDot: boolean;
|
|
61877
62578
|
} & {
|
|
@@ -61910,6 +62611,7 @@ declare const VTimelineItem: {
|
|
|
61910
62611
|
size: string | number;
|
|
61911
62612
|
tag: string;
|
|
61912
62613
|
rounded: string | number | boolean;
|
|
62614
|
+
tile: boolean;
|
|
61913
62615
|
fillDot: boolean;
|
|
61914
62616
|
hideDot: boolean;
|
|
61915
62617
|
hideOpposite: boolean;
|
|
@@ -61921,6 +62623,7 @@ declare const VTimelineItem: {
|
|
|
61921
62623
|
style: vue.StyleValue;
|
|
61922
62624
|
size: string | number;
|
|
61923
62625
|
tag: string;
|
|
62626
|
+
tile: boolean;
|
|
61924
62627
|
fillDot: boolean;
|
|
61925
62628
|
hideDot: boolean;
|
|
61926
62629
|
} & {
|
|
@@ -61959,6 +62662,7 @@ declare const VTimelineItem: {
|
|
|
61959
62662
|
size: string | number;
|
|
61960
62663
|
tag: string;
|
|
61961
62664
|
rounded: string | number | boolean;
|
|
62665
|
+
tile: boolean;
|
|
61962
62666
|
fillDot: boolean;
|
|
61963
62667
|
hideDot: boolean;
|
|
61964
62668
|
hideOpposite: boolean;
|
|
@@ -61985,6 +62689,7 @@ declare const VTimelineItem: {
|
|
|
61985
62689
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
61986
62690
|
default: undefined;
|
|
61987
62691
|
};
|
|
62692
|
+
tile: BooleanConstructor;
|
|
61988
62693
|
elevation: {
|
|
61989
62694
|
type: (StringConstructor | NumberConstructor)[];
|
|
61990
62695
|
validator(v: any): boolean;
|
|
@@ -62024,6 +62729,7 @@ declare const VTimelineItem: {
|
|
|
62024
62729
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
62025
62730
|
default: undefined;
|
|
62026
62731
|
};
|
|
62732
|
+
tile: BooleanConstructor;
|
|
62027
62733
|
elevation: {
|
|
62028
62734
|
type: (StringConstructor | NumberConstructor)[];
|
|
62029
62735
|
validator(v: any): boolean;
|
|
@@ -67311,41 +68017,42 @@ declare module '@vue/runtime-core' {
|
|
|
67311
68017
|
}
|
|
67312
68018
|
|
|
67313
68019
|
export interface GlobalComponents {
|
|
67314
|
-
|
|
67315
|
-
VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
|
|
68020
|
+
VApp: typeof import('vuetify/components')['VApp']
|
|
67316
68021
|
VAppBar: typeof import('vuetify/components')['VAppBar']
|
|
67317
68022
|
VAppBarNavIcon: typeof import('vuetify/components')['VAppBarNavIcon']
|
|
67318
68023
|
VAppBarTitle: typeof import('vuetify/components')['VAppBarTitle']
|
|
67319
|
-
|
|
68024
|
+
VAlert: typeof import('vuetify/components')['VAlert']
|
|
68025
|
+
VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
|
|
67320
68026
|
VAvatar: typeof import('vuetify/components')['VAvatar']
|
|
67321
68027
|
VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
|
|
68028
|
+
VBadge: typeof import('vuetify/components')['VBadge']
|
|
67322
68029
|
VBanner: typeof import('vuetify/components')['VBanner']
|
|
67323
68030
|
VBannerActions: typeof import('vuetify/components')['VBannerActions']
|
|
67324
68031
|
VBannerText: typeof import('vuetify/components')['VBannerText']
|
|
68032
|
+
VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
|
|
67325
68033
|
VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
|
|
67326
|
-
|
|
68034
|
+
VBtn: typeof import('vuetify/components')['VBtn']
|
|
67327
68035
|
VBreadcrumbs: typeof import('vuetify/components')['VBreadcrumbs']
|
|
67328
68036
|
VBreadcrumbsItem: typeof import('vuetify/components')['VBreadcrumbsItem']
|
|
67329
68037
|
VBreadcrumbsDivider: typeof import('vuetify/components')['VBreadcrumbsDivider']
|
|
67330
|
-
|
|
67331
|
-
VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
|
|
68038
|
+
VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
|
|
67332
68039
|
VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
|
|
68040
|
+
VCarousel: typeof import('vuetify/components')['VCarousel']
|
|
68041
|
+
VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
|
|
67333
68042
|
VCard: typeof import('vuetify/components')['VCard']
|
|
67334
68043
|
VCardActions: typeof import('vuetify/components')['VCardActions']
|
|
67335
68044
|
VCardItem: typeof import('vuetify/components')['VCardItem']
|
|
67336
68045
|
VCardSubtitle: typeof import('vuetify/components')['VCardSubtitle']
|
|
67337
68046
|
VCardText: typeof import('vuetify/components')['VCardText']
|
|
67338
68047
|
VCardTitle: typeof import('vuetify/components')['VCardTitle']
|
|
67339
|
-
VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
|
|
67340
|
-
VCarousel: typeof import('vuetify/components')['VCarousel']
|
|
67341
|
-
VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
|
|
67342
68048
|
VChip: typeof import('vuetify/components')['VChip']
|
|
68049
|
+
VCode: typeof import('vuetify/components')['VCode']
|
|
67343
68050
|
VCheckbox: typeof import('vuetify/components')['VCheckbox']
|
|
67344
68051
|
VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
|
|
67345
|
-
|
|
68052
|
+
VCombobox: typeof import('vuetify/components')['VCombobox']
|
|
67346
68053
|
VChipGroup: typeof import('vuetify/components')['VChipGroup']
|
|
67347
|
-
VColorPicker: typeof import('vuetify/components')['VColorPicker']
|
|
67348
68054
|
VCounter: typeof import('vuetify/components')['VCounter']
|
|
68055
|
+
VColorPicker: typeof import('vuetify/components')['VColorPicker']
|
|
67349
68056
|
VDataTable: typeof import('vuetify/components')['VDataTable']
|
|
67350
68057
|
VDataTableFooter: typeof import('vuetify/components')['VDataTableFooter']
|
|
67351
68058
|
VDataTableRows: typeof import('vuetify/components')['VDataTableRows']
|
|
@@ -67358,29 +68065,27 @@ declare module '@vue/runtime-core' {
|
|
|
67358
68065
|
VDatePickerMonth: typeof import('vuetify/components')['VDatePickerMonth']
|
|
67359
68066
|
VDatePickerMonths: typeof import('vuetify/components')['VDatePickerMonths']
|
|
67360
68067
|
VDatePickerYears: typeof import('vuetify/components')['VDatePickerYears']
|
|
67361
|
-
VCombobox: typeof import('vuetify/components')['VCombobox']
|
|
67362
68068
|
VDialog: typeof import('vuetify/components')['VDialog']
|
|
67363
68069
|
VDivider: typeof import('vuetify/components')['VDivider']
|
|
67364
68070
|
VExpansionPanels: typeof import('vuetify/components')['VExpansionPanels']
|
|
67365
68071
|
VExpansionPanel: typeof import('vuetify/components')['VExpansionPanel']
|
|
67366
68072
|
VExpansionPanelText: typeof import('vuetify/components')['VExpansionPanelText']
|
|
67367
68073
|
VExpansionPanelTitle: typeof import('vuetify/components')['VExpansionPanelTitle']
|
|
67368
|
-
VFooter: typeof import('vuetify/components')['VFooter']
|
|
67369
68074
|
VField: typeof import('vuetify/components')['VField']
|
|
67370
68075
|
VFieldLabel: typeof import('vuetify/components')['VFieldLabel']
|
|
67371
68076
|
VFileInput: typeof import('vuetify/components')['VFileInput']
|
|
67372
|
-
VImg: typeof import('vuetify/components')['VImg']
|
|
67373
68077
|
VIcon: typeof import('vuetify/components')['VIcon']
|
|
67374
68078
|
VComponentIcon: typeof import('vuetify/components')['VComponentIcon']
|
|
67375
68079
|
VSvgIcon: typeof import('vuetify/components')['VSvgIcon']
|
|
67376
68080
|
VLigatureIcon: typeof import('vuetify/components')['VLigatureIcon']
|
|
67377
68081
|
VClassIcon: typeof import('vuetify/components')['VClassIcon']
|
|
68082
|
+
VFooter: typeof import('vuetify/components')['VFooter']
|
|
68083
|
+
VImg: typeof import('vuetify/components')['VImg']
|
|
68084
|
+
VInput: typeof import('vuetify/components')['VInput']
|
|
67378
68085
|
VItemGroup: typeof import('vuetify/components')['VItemGroup']
|
|
67379
68086
|
VItem: typeof import('vuetify/components')['VItem']
|
|
67380
|
-
VInput: typeof import('vuetify/components')['VInput']
|
|
67381
|
-
VKbd: typeof import('vuetify/components')['VKbd']
|
|
67382
|
-
VMain: typeof import('vuetify/components')['VMain']
|
|
67383
68087
|
VInfiniteScroll: typeof import('vuetify/components')['VInfiniteScroll']
|
|
68088
|
+
VKbd: typeof import('vuetify/components')['VKbd']
|
|
67384
68089
|
VLabel: typeof import('vuetify/components')['VLabel']
|
|
67385
68090
|
VList: typeof import('vuetify/components')['VList']
|
|
67386
68091
|
VListGroup: typeof import('vuetify/components')['VListGroup']
|
|
@@ -67391,25 +68096,25 @@ declare module '@vue/runtime-core' {
|
|
|
67391
68096
|
VListItemSubtitle: typeof import('vuetify/components')['VListItemSubtitle']
|
|
67392
68097
|
VListItemTitle: typeof import('vuetify/components')['VListItemTitle']
|
|
67393
68098
|
VListSubheader: typeof import('vuetify/components')['VListSubheader']
|
|
67394
|
-
|
|
68099
|
+
VMain: typeof import('vuetify/components')['VMain']
|
|
67395
68100
|
VNavigationDrawer: typeof import('vuetify/components')['VNavigationDrawer']
|
|
67396
68101
|
VMenu: typeof import('vuetify/components')['VMenu']
|
|
67397
|
-
|
|
68102
|
+
VMessages: typeof import('vuetify/components')['VMessages']
|
|
67398
68103
|
VOtpInput: typeof import('vuetify/components')['VOtpInput']
|
|
68104
|
+
VOverlay: typeof import('vuetify/components')['VOverlay']
|
|
67399
68105
|
VPagination: typeof import('vuetify/components')['VPagination']
|
|
67400
68106
|
VProgressCircular: typeof import('vuetify/components')['VProgressCircular']
|
|
67401
68107
|
VProgressLinear: typeof import('vuetify/components')['VProgressLinear']
|
|
67402
|
-
VRating: typeof import('vuetify/components')['VRating']
|
|
67403
68108
|
VRadioGroup: typeof import('vuetify/components')['VRadioGroup']
|
|
67404
|
-
|
|
68109
|
+
VRating: typeof import('vuetify/components')['VRating']
|
|
67405
68110
|
VSelect: typeof import('vuetify/components')['VSelect']
|
|
67406
|
-
|
|
68111
|
+
VSelectionControl: typeof import('vuetify/components')['VSelectionControl']
|
|
67407
68112
|
VSheet: typeof import('vuetify/components')['VSheet']
|
|
67408
|
-
|
|
68113
|
+
VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
|
|
68114
|
+
VSlider: typeof import('vuetify/components')['VSlider']
|
|
67409
68115
|
VSlideGroup: typeof import('vuetify/components')['VSlideGroup']
|
|
67410
68116
|
VSlideGroupItem: typeof import('vuetify/components')['VSlideGroupItem']
|
|
67411
|
-
|
|
67412
|
-
VSwitch: typeof import('vuetify/components')['VSwitch']
|
|
68117
|
+
VSkeletonLoader: typeof import('vuetify/components')['VSkeletonLoader']
|
|
67413
68118
|
VStepper: typeof import('vuetify/components')['VStepper']
|
|
67414
68119
|
VStepperActions: typeof import('vuetify/components')['VStepperActions']
|
|
67415
68120
|
VStepperHeader: typeof import('vuetify/components')['VStepperHeader']
|
|
@@ -67418,26 +68123,27 @@ declare module '@vue/runtime-core' {
|
|
|
67418
68123
|
VStepperWindowItem: typeof import('vuetify/components')['VStepperWindowItem']
|
|
67419
68124
|
VSnackbar: typeof import('vuetify/components')['VSnackbar']
|
|
67420
68125
|
VSystemBar: typeof import('vuetify/components')['VSystemBar']
|
|
67421
|
-
|
|
67422
|
-
VTab: typeof import('vuetify/components')['VTab']
|
|
68126
|
+
VSwitch: typeof import('vuetify/components')['VSwitch']
|
|
67423
68127
|
VTable: typeof import('vuetify/components')['VTable']
|
|
67424
68128
|
VTextarea: typeof import('vuetify/components')['VTextarea']
|
|
67425
|
-
|
|
67426
|
-
|
|
67427
|
-
|
|
68129
|
+
VTextField: typeof import('vuetify/components')['VTextField']
|
|
68130
|
+
VTabs: typeof import('vuetify/components')['VTabs']
|
|
68131
|
+
VTab: typeof import('vuetify/components')['VTab']
|
|
67428
68132
|
VToolbar: typeof import('vuetify/components')['VToolbar']
|
|
67429
68133
|
VToolbarTitle: typeof import('vuetify/components')['VToolbarTitle']
|
|
67430
68134
|
VToolbarItems: typeof import('vuetify/components')['VToolbarItems']
|
|
67431
|
-
|
|
68135
|
+
VTimeline: typeof import('vuetify/components')['VTimeline']
|
|
68136
|
+
VTimelineItem: typeof import('vuetify/components')['VTimelineItem']
|
|
68137
|
+
VTooltip: typeof import('vuetify/components')['VTooltip']
|
|
67432
68138
|
VWindow: typeof import('vuetify/components')['VWindow']
|
|
67433
68139
|
VWindowItem: typeof import('vuetify/components')['VWindowItem']
|
|
67434
68140
|
VDataIterator: typeof import('vuetify/components')['VDataIterator']
|
|
67435
68141
|
VDefaultsProvider: typeof import('vuetify/components')['VDefaultsProvider']
|
|
67436
|
-
VForm: typeof import('vuetify/components')['VForm']
|
|
67437
68142
|
VContainer: typeof import('vuetify/components')['VContainer']
|
|
67438
68143
|
VCol: typeof import('vuetify/components')['VCol']
|
|
67439
68144
|
VRow: typeof import('vuetify/components')['VRow']
|
|
67440
68145
|
VSpacer: typeof import('vuetify/components')['VSpacer']
|
|
68146
|
+
VForm: typeof import('vuetify/components')['VForm']
|
|
67441
68147
|
VHover: typeof import('vuetify/components')['VHover']
|
|
67442
68148
|
VLayout: typeof import('vuetify/components')['VLayout']
|
|
67443
68149
|
VLayoutItem: typeof import('vuetify/components')['VLayoutItem']
|
|
@@ -67446,11 +68152,11 @@ declare module '@vue/runtime-core' {
|
|
|
67446
68152
|
VNoSsr: typeof import('vuetify/components')['VNoSsr']
|
|
67447
68153
|
VParallax: typeof import('vuetify/components')['VParallax']
|
|
67448
68154
|
VRadio: typeof import('vuetify/components')['VRadio']
|
|
67449
|
-
VRangeSlider: typeof import('vuetify/components')['VRangeSlider']
|
|
67450
68155
|
VResponsive: typeof import('vuetify/components')['VResponsive']
|
|
68156
|
+
VRangeSlider: typeof import('vuetify/components')['VRangeSlider']
|
|
67451
68157
|
VThemeProvider: typeof import('vuetify/components')['VThemeProvider']
|
|
67452
|
-
VValidation: typeof import('vuetify/components')['VValidation']
|
|
67453
68158
|
VVirtualScroll: typeof import('vuetify/components')['VVirtualScroll']
|
|
68159
|
+
VValidation: typeof import('vuetify/components')['VValidation']
|
|
67454
68160
|
VFabTransition: typeof import('vuetify/components')['VFabTransition']
|
|
67455
68161
|
VDialogBottomTransition: typeof import('vuetify/components')['VDialogBottomTransition']
|
|
67456
68162
|
VDialogTopTransition: typeof import('vuetify/components')['VDialogTopTransition']
|
|
@@ -67467,14 +68173,15 @@ declare module '@vue/runtime-core' {
|
|
|
67467
68173
|
VExpandTransition: typeof import('vuetify/components')['VExpandTransition']
|
|
67468
68174
|
VExpandXTransition: typeof import('vuetify/components')['VExpandXTransition']
|
|
67469
68175
|
VDialogTransition: typeof import('vuetify/components')['VDialogTransition']
|
|
68176
|
+
VPicker: typeof import('vuetify/labs/components')['VPicker']
|
|
68177
|
+
VPickerTitle: typeof import('vuetify/labs/components')['VPickerTitle']
|
|
67470
68178
|
VCalendar: typeof import('vuetify/labs/components')['VCalendar']
|
|
67471
68179
|
VCalendarDay: typeof import('vuetify/labs/components')['VCalendarDay']
|
|
67472
68180
|
VCalendarHeader: typeof import('vuetify/labs/components')['VCalendarHeader']
|
|
67473
68181
|
VCalendarInterval: typeof import('vuetify/labs/components')['VCalendarInterval']
|
|
67474
68182
|
VCalendarIntervalEvent: typeof import('vuetify/labs/components')['VCalendarIntervalEvent']
|
|
67475
68183
|
VCalendarMonthDay: typeof import('vuetify/labs/components')['VCalendarMonthDay']
|
|
67476
|
-
VPicker: typeof import('vuetify/labs/components')['VPicker']
|
|
67477
|
-
VPickerTitle: typeof import('vuetify/labs/components')['VPickerTitle']
|
|
67478
68184
|
VConfirmEdit: typeof import('vuetify/labs/components')['VConfirmEdit']
|
|
68185
|
+
VSparkline: typeof import('vuetify/labs/components')['VSparkline']
|
|
67479
68186
|
}
|
|
67480
68187
|
}
|