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
|
@@ -301,6 +301,7 @@ declare const VToolbar: {
|
|
|
301
301
|
style: vue.StyleValue;
|
|
302
302
|
tag: string;
|
|
303
303
|
collapse: boolean;
|
|
304
|
+
tile: boolean;
|
|
304
305
|
density: Density$1;
|
|
305
306
|
extended: boolean;
|
|
306
307
|
extensionHeight: string | number;
|
|
@@ -348,6 +349,7 @@ declare const VToolbar: {
|
|
|
348
349
|
style: vue.StyleValue;
|
|
349
350
|
tag: string;
|
|
350
351
|
collapse: boolean;
|
|
352
|
+
tile: boolean;
|
|
351
353
|
density: Density$1;
|
|
352
354
|
extended: boolean;
|
|
353
355
|
extensionHeight: string | number;
|
|
@@ -393,6 +395,7 @@ declare const VToolbar: {
|
|
|
393
395
|
tag: string;
|
|
394
396
|
collapse: boolean;
|
|
395
397
|
rounded: string | number | boolean;
|
|
398
|
+
tile: boolean;
|
|
396
399
|
density: Density$1;
|
|
397
400
|
extended: boolean;
|
|
398
401
|
extensionHeight: string | number;
|
|
@@ -430,6 +433,7 @@ declare const VToolbar: {
|
|
|
430
433
|
style: vue.StyleValue;
|
|
431
434
|
tag: string;
|
|
432
435
|
collapse: boolean;
|
|
436
|
+
tile: boolean;
|
|
433
437
|
density: Density$1;
|
|
434
438
|
extended: boolean;
|
|
435
439
|
extensionHeight: string | number;
|
|
@@ -478,6 +482,7 @@ declare const VToolbar: {
|
|
|
478
482
|
tag: string;
|
|
479
483
|
collapse: boolean;
|
|
480
484
|
rounded: string | number | boolean;
|
|
485
|
+
tile: boolean;
|
|
481
486
|
density: Density$1;
|
|
482
487
|
extended: boolean;
|
|
483
488
|
extensionHeight: string | number;
|
|
@@ -493,6 +498,7 @@ declare const VToolbar: {
|
|
|
493
498
|
style: vue.StyleValue;
|
|
494
499
|
tag: string;
|
|
495
500
|
collapse: boolean;
|
|
501
|
+
tile: boolean;
|
|
496
502
|
density: Density$1;
|
|
497
503
|
extended: boolean;
|
|
498
504
|
extensionHeight: string | number;
|
|
@@ -541,6 +547,7 @@ declare const VToolbar: {
|
|
|
541
547
|
tag: string;
|
|
542
548
|
collapse: boolean;
|
|
543
549
|
rounded: string | number | boolean;
|
|
550
|
+
tile: boolean;
|
|
544
551
|
density: Density$1;
|
|
545
552
|
extended: boolean;
|
|
546
553
|
extensionHeight: string | number;
|
|
@@ -577,6 +584,7 @@ declare const VToolbar: {
|
|
|
577
584
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
578
585
|
default: undefined;
|
|
579
586
|
};
|
|
587
|
+
tile: BooleanConstructor;
|
|
580
588
|
elevation: {
|
|
581
589
|
type: (StringConstructor | NumberConstructor)[];
|
|
582
590
|
validator(v: any): boolean;
|
|
@@ -621,6 +629,7 @@ declare const VToolbar: {
|
|
|
621
629
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
622
630
|
default: undefined;
|
|
623
631
|
};
|
|
632
|
+
tile: BooleanConstructor;
|
|
624
633
|
elevation: {
|
|
625
634
|
type: (StringConstructor | NumberConstructor)[];
|
|
626
635
|
validator(v: any): boolean;
|
|
@@ -665,6 +674,7 @@ declare const VAppBar: {
|
|
|
665
674
|
style: vue.StyleValue;
|
|
666
675
|
tag: string;
|
|
667
676
|
collapse: boolean;
|
|
677
|
+
tile: boolean;
|
|
668
678
|
density: Density$1;
|
|
669
679
|
extended: boolean;
|
|
670
680
|
extensionHeight: string | number;
|
|
@@ -720,6 +730,7 @@ declare const VAppBar: {
|
|
|
720
730
|
style: vue.StyleValue;
|
|
721
731
|
tag: string;
|
|
722
732
|
collapse: boolean;
|
|
733
|
+
tile: boolean;
|
|
723
734
|
density: Density$1;
|
|
724
735
|
extended: boolean;
|
|
725
736
|
extensionHeight: string | number;
|
|
@@ -774,6 +785,7 @@ declare const VAppBar: {
|
|
|
774
785
|
tag: string;
|
|
775
786
|
collapse: boolean;
|
|
776
787
|
rounded: string | number | boolean;
|
|
788
|
+
tile: boolean;
|
|
777
789
|
density: Density$1;
|
|
778
790
|
extended: boolean;
|
|
779
791
|
extensionHeight: string | number;
|
|
@@ -815,6 +827,7 @@ declare const VAppBar: {
|
|
|
815
827
|
style: vue.StyleValue;
|
|
816
828
|
tag: string;
|
|
817
829
|
collapse: boolean;
|
|
830
|
+
tile: boolean;
|
|
818
831
|
density: Density$1;
|
|
819
832
|
extended: boolean;
|
|
820
833
|
extensionHeight: string | number;
|
|
@@ -869,6 +882,7 @@ declare const VAppBar: {
|
|
|
869
882
|
tag: string;
|
|
870
883
|
collapse: boolean;
|
|
871
884
|
rounded: string | number | boolean;
|
|
885
|
+
tile: boolean;
|
|
872
886
|
density: Density$1;
|
|
873
887
|
extended: boolean;
|
|
874
888
|
extensionHeight: string | number;
|
|
@@ -888,6 +902,7 @@ declare const VAppBar: {
|
|
|
888
902
|
style: vue.StyleValue;
|
|
889
903
|
tag: string;
|
|
890
904
|
collapse: boolean;
|
|
905
|
+
tile: boolean;
|
|
891
906
|
density: Density$1;
|
|
892
907
|
extended: boolean;
|
|
893
908
|
extensionHeight: string | number;
|
|
@@ -944,6 +959,7 @@ declare const VAppBar: {
|
|
|
944
959
|
tag: string;
|
|
945
960
|
collapse: boolean;
|
|
946
961
|
rounded: string | number | boolean;
|
|
962
|
+
tile: boolean;
|
|
947
963
|
density: Density$1;
|
|
948
964
|
extended: boolean;
|
|
949
965
|
extensionHeight: string | number;
|
|
@@ -1001,6 +1017,7 @@ declare const VAppBar: {
|
|
|
1001
1017
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
1002
1018
|
default: undefined;
|
|
1003
1019
|
};
|
|
1020
|
+
tile: BooleanConstructor;
|
|
1004
1021
|
elevation: {
|
|
1005
1022
|
type: (StringConstructor | NumberConstructor)[];
|
|
1006
1023
|
validator(v: any): boolean;
|
|
@@ -1069,6 +1086,7 @@ declare const VAppBar: {
|
|
|
1069
1086
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
1070
1087
|
default: undefined;
|
|
1071
1088
|
};
|
|
1089
|
+
tile: BooleanConstructor;
|
|
1072
1090
|
elevation: {
|
|
1073
1091
|
type: (StringConstructor | NumberConstructor)[];
|
|
1074
1092
|
validator(v: any): boolean;
|
|
@@ -1435,6 +1453,7 @@ declare const VAppBarNavIcon: {
|
|
|
1435
1453
|
size: string | number;
|
|
1436
1454
|
tag: string;
|
|
1437
1455
|
icon: NonNullable<boolean | IconValue>;
|
|
1456
|
+
tile: boolean;
|
|
1438
1457
|
density: Density;
|
|
1439
1458
|
slim: boolean;
|
|
1440
1459
|
stacked: boolean;
|
|
@@ -1495,6 +1514,7 @@ declare const VAppBarNavIcon: {
|
|
|
1495
1514
|
size: string | number;
|
|
1496
1515
|
tag: string;
|
|
1497
1516
|
icon: NonNullable<boolean | IconValue>;
|
|
1517
|
+
tile: boolean;
|
|
1498
1518
|
density: Density;
|
|
1499
1519
|
slim: boolean;
|
|
1500
1520
|
stacked: boolean;
|
|
@@ -1557,6 +1577,7 @@ declare const VAppBarNavIcon: {
|
|
|
1557
1577
|
tag: string;
|
|
1558
1578
|
icon: NonNullable<boolean | IconValue>;
|
|
1559
1579
|
rounded: string | number | boolean;
|
|
1580
|
+
tile: boolean;
|
|
1560
1581
|
density: Density;
|
|
1561
1582
|
slim: boolean;
|
|
1562
1583
|
stacked: boolean;
|
|
@@ -1595,6 +1616,7 @@ declare const VAppBarNavIcon: {
|
|
|
1595
1616
|
size: string | number;
|
|
1596
1617
|
tag: string;
|
|
1597
1618
|
icon: NonNullable<boolean | IconValue>;
|
|
1619
|
+
tile: boolean;
|
|
1598
1620
|
density: Density;
|
|
1599
1621
|
slim: boolean;
|
|
1600
1622
|
stacked: boolean;
|
|
@@ -1657,6 +1679,7 @@ declare const VAppBarNavIcon: {
|
|
|
1657
1679
|
tag: string;
|
|
1658
1680
|
icon: NonNullable<boolean | IconValue>;
|
|
1659
1681
|
rounded: string | number | boolean;
|
|
1682
|
+
tile: boolean;
|
|
1660
1683
|
density: Density;
|
|
1661
1684
|
slim: boolean;
|
|
1662
1685
|
stacked: boolean;
|
|
@@ -1679,6 +1702,7 @@ declare const VAppBarNavIcon: {
|
|
|
1679
1702
|
size: string | number;
|
|
1680
1703
|
tag: string;
|
|
1681
1704
|
icon: NonNullable<boolean | IconValue>;
|
|
1705
|
+
tile: boolean;
|
|
1682
1706
|
density: Density;
|
|
1683
1707
|
slim: boolean;
|
|
1684
1708
|
stacked: boolean;
|
|
@@ -1741,6 +1765,7 @@ declare const VAppBarNavIcon: {
|
|
|
1741
1765
|
tag: string;
|
|
1742
1766
|
icon: NonNullable<boolean | IconValue>;
|
|
1743
1767
|
rounded: string | number | boolean;
|
|
1768
|
+
tile: boolean;
|
|
1744
1769
|
density: Density;
|
|
1745
1770
|
slim: boolean;
|
|
1746
1771
|
stacked: boolean;
|
|
@@ -1793,6 +1818,7 @@ declare const VAppBarNavIcon: {
|
|
|
1793
1818
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
1794
1819
|
default: undefined;
|
|
1795
1820
|
};
|
|
1821
|
+
tile: BooleanConstructor;
|
|
1796
1822
|
position: {
|
|
1797
1823
|
type: vue.PropType<"fixed" | "absolute" | "static" | "sticky" | "relative">;
|
|
1798
1824
|
validator: (v: any) => boolean;
|
|
@@ -1881,6 +1907,7 @@ declare const VAppBarNavIcon: {
|
|
|
1881
1907
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
1882
1908
|
default: undefined;
|
|
1883
1909
|
};
|
|
1910
|
+
tile: BooleanConstructor;
|
|
1884
1911
|
position: {
|
|
1885
1912
|
type: vue.PropType<"fixed" | "absolute" | "static" | "sticky" | "relative">;
|
|
1886
1913
|
validator: (v: any) => boolean;
|
|
@@ -2079,6 +2106,7 @@ declare const VAlert: {
|
|
|
2079
2106
|
style: vue.StyleValue;
|
|
2080
2107
|
tag: string;
|
|
2081
2108
|
icon: false | IconValue;
|
|
2109
|
+
tile: boolean;
|
|
2082
2110
|
prominent: boolean;
|
|
2083
2111
|
density: Density;
|
|
2084
2112
|
modelValue: boolean;
|
|
@@ -2145,6 +2173,7 @@ declare const VAlert: {
|
|
|
2145
2173
|
style: vue.StyleValue;
|
|
2146
2174
|
tag: string;
|
|
2147
2175
|
icon: false | IconValue;
|
|
2176
|
+
tile: boolean;
|
|
2148
2177
|
prominent: boolean;
|
|
2149
2178
|
density: Density;
|
|
2150
2179
|
modelValue: boolean;
|
|
@@ -2209,6 +2238,7 @@ declare const VAlert: {
|
|
|
2209
2238
|
tag: string;
|
|
2210
2239
|
icon: false | IconValue;
|
|
2211
2240
|
rounded: string | number | boolean;
|
|
2241
|
+
tile: boolean;
|
|
2212
2242
|
prominent: boolean;
|
|
2213
2243
|
density: Density;
|
|
2214
2244
|
modelValue: boolean;
|
|
@@ -2248,6 +2278,7 @@ declare const VAlert: {
|
|
|
2248
2278
|
style: vue.StyleValue;
|
|
2249
2279
|
tag: string;
|
|
2250
2280
|
icon: false | IconValue;
|
|
2281
|
+
tile: boolean;
|
|
2251
2282
|
prominent: boolean;
|
|
2252
2283
|
density: Density;
|
|
2253
2284
|
modelValue: boolean;
|
|
@@ -2312,6 +2343,7 @@ declare const VAlert: {
|
|
|
2312
2343
|
tag: string;
|
|
2313
2344
|
icon: false | IconValue;
|
|
2314
2345
|
rounded: string | number | boolean;
|
|
2346
|
+
tile: boolean;
|
|
2315
2347
|
prominent: boolean;
|
|
2316
2348
|
density: Density;
|
|
2317
2349
|
modelValue: boolean;
|
|
@@ -2327,6 +2359,7 @@ declare const VAlert: {
|
|
|
2327
2359
|
style: vue.StyleValue;
|
|
2328
2360
|
tag: string;
|
|
2329
2361
|
icon: false | IconValue;
|
|
2362
|
+
tile: boolean;
|
|
2330
2363
|
prominent: boolean;
|
|
2331
2364
|
density: Density;
|
|
2332
2365
|
modelValue: boolean;
|
|
@@ -2394,6 +2427,7 @@ declare const VAlert: {
|
|
|
2394
2427
|
tag: string;
|
|
2395
2428
|
icon: false | IconValue;
|
|
2396
2429
|
rounded: string | number | boolean;
|
|
2430
|
+
tile: boolean;
|
|
2397
2431
|
prominent: boolean;
|
|
2398
2432
|
density: Density;
|
|
2399
2433
|
modelValue: boolean;
|
|
@@ -2440,6 +2474,7 @@ declare const VAlert: {
|
|
|
2440
2474
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
2441
2475
|
default: undefined;
|
|
2442
2476
|
};
|
|
2477
|
+
tile: BooleanConstructor;
|
|
2443
2478
|
position: {
|
|
2444
2479
|
type: PropType<"fixed" | "absolute" | "static" | "sticky" | "relative">;
|
|
2445
2480
|
validator: (v: any) => boolean;
|
|
@@ -2513,6 +2548,7 @@ declare const VAlert: {
|
|
|
2513
2548
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
2514
2549
|
default: undefined;
|
|
2515
2550
|
};
|
|
2551
|
+
tile: BooleanConstructor;
|
|
2516
2552
|
position: {
|
|
2517
2553
|
type: PropType<"fixed" | "absolute" | "static" | "sticky" | "relative">;
|
|
2518
2554
|
validator: (v: any) => boolean;
|
|
@@ -2719,6 +2755,7 @@ declare const VField: {
|
|
|
2719
2755
|
active: boolean;
|
|
2720
2756
|
style: vue.StyleValue;
|
|
2721
2757
|
disabled: boolean;
|
|
2758
|
+
tile: boolean;
|
|
2722
2759
|
clearIcon: IconValue;
|
|
2723
2760
|
focused: boolean;
|
|
2724
2761
|
clearable: boolean;
|
|
@@ -2757,6 +2794,7 @@ declare const VField: {
|
|
|
2757
2794
|
active: boolean;
|
|
2758
2795
|
style: vue.StyleValue;
|
|
2759
2796
|
disabled: boolean;
|
|
2797
|
+
tile: boolean;
|
|
2760
2798
|
clearIcon: IconValue;
|
|
2761
2799
|
focused: boolean;
|
|
2762
2800
|
clearable: boolean;
|
|
@@ -2791,6 +2829,7 @@ declare const VField: {
|
|
|
2791
2829
|
style: vue.StyleValue;
|
|
2792
2830
|
disabled: boolean;
|
|
2793
2831
|
rounded: string | number | boolean;
|
|
2832
|
+
tile: boolean;
|
|
2794
2833
|
clearIcon: IconValue;
|
|
2795
2834
|
focused: boolean;
|
|
2796
2835
|
centerAffix: boolean;
|
|
@@ -2835,6 +2874,7 @@ declare const VField: {
|
|
|
2835
2874
|
active: boolean;
|
|
2836
2875
|
style: vue.StyleValue;
|
|
2837
2876
|
disabled: boolean;
|
|
2877
|
+
tile: boolean;
|
|
2838
2878
|
clearIcon: IconValue;
|
|
2839
2879
|
focused: boolean;
|
|
2840
2880
|
clearable: boolean;
|
|
@@ -2871,6 +2911,7 @@ declare const VField: {
|
|
|
2871
2911
|
style: vue.StyleValue;
|
|
2872
2912
|
disabled: boolean;
|
|
2873
2913
|
rounded: string | number | boolean;
|
|
2914
|
+
tile: boolean;
|
|
2874
2915
|
clearIcon: IconValue;
|
|
2875
2916
|
focused: boolean;
|
|
2876
2917
|
centerAffix: boolean;
|
|
@@ -2890,6 +2931,7 @@ declare const VField: {
|
|
|
2890
2931
|
active: boolean;
|
|
2891
2932
|
style: vue.StyleValue;
|
|
2892
2933
|
disabled: boolean;
|
|
2934
|
+
tile: boolean;
|
|
2893
2935
|
clearIcon: IconValue;
|
|
2894
2936
|
focused: boolean;
|
|
2895
2937
|
clearable: boolean;
|
|
@@ -2929,6 +2971,7 @@ declare const VField: {
|
|
|
2929
2971
|
style: vue.StyleValue;
|
|
2930
2972
|
disabled: boolean;
|
|
2931
2973
|
rounded: string | number | boolean;
|
|
2974
|
+
tile: boolean;
|
|
2932
2975
|
clearIcon: IconValue;
|
|
2933
2976
|
focused: boolean;
|
|
2934
2977
|
centerAffix: boolean;
|
|
@@ -2970,6 +3013,7 @@ declare const VField: {
|
|
|
2970
3013
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
2971
3014
|
default: undefined;
|
|
2972
3015
|
};
|
|
3016
|
+
tile: BooleanConstructor;
|
|
2973
3017
|
loading: (StringConstructor | BooleanConstructor)[];
|
|
2974
3018
|
class: PropType<any>;
|
|
2975
3019
|
style: {
|
|
@@ -3019,6 +3063,7 @@ declare const VField: {
|
|
|
3019
3063
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
3020
3064
|
default: undefined;
|
|
3021
3065
|
};
|
|
3066
|
+
tile: BooleanConstructor;
|
|
3022
3067
|
loading: (StringConstructor | BooleanConstructor)[];
|
|
3023
3068
|
class: PropType<any>;
|
|
3024
3069
|
style: {
|
|
@@ -3796,6 +3841,7 @@ declare const VListItem: {
|
|
|
3796
3841
|
style: vue.StyleValue;
|
|
3797
3842
|
disabled: boolean;
|
|
3798
3843
|
tag: string;
|
|
3844
|
+
tile: boolean;
|
|
3799
3845
|
density: Density;
|
|
3800
3846
|
slim: boolean;
|
|
3801
3847
|
ripple: boolean | {
|
|
@@ -3864,6 +3910,7 @@ declare const VListItem: {
|
|
|
3864
3910
|
style: vue.StyleValue;
|
|
3865
3911
|
disabled: boolean;
|
|
3866
3912
|
tag: string;
|
|
3913
|
+
tile: boolean;
|
|
3867
3914
|
density: Density;
|
|
3868
3915
|
slim: boolean;
|
|
3869
3916
|
ripple: boolean | {
|
|
@@ -3933,6 +3980,7 @@ declare const VListItem: {
|
|
|
3933
3980
|
disabled: boolean;
|
|
3934
3981
|
tag: string;
|
|
3935
3982
|
rounded: string | number | boolean;
|
|
3983
|
+
tile: boolean;
|
|
3936
3984
|
density: Density;
|
|
3937
3985
|
slim: boolean;
|
|
3938
3986
|
ripple: boolean | {
|
|
@@ -3969,6 +4017,7 @@ declare const VListItem: {
|
|
|
3969
4017
|
style: vue.StyleValue;
|
|
3970
4018
|
disabled: boolean;
|
|
3971
4019
|
tag: string;
|
|
4020
|
+
tile: boolean;
|
|
3972
4021
|
density: Density;
|
|
3973
4022
|
slim: boolean;
|
|
3974
4023
|
ripple: boolean | {
|
|
@@ -4038,6 +4087,7 @@ declare const VListItem: {
|
|
|
4038
4087
|
disabled: boolean;
|
|
4039
4088
|
tag: string;
|
|
4040
4089
|
rounded: string | number | boolean;
|
|
4090
|
+
tile: boolean;
|
|
4041
4091
|
density: Density;
|
|
4042
4092
|
slim: boolean;
|
|
4043
4093
|
ripple: boolean | {
|
|
@@ -4055,6 +4105,7 @@ declare const VListItem: {
|
|
|
4055
4105
|
style: vue.StyleValue;
|
|
4056
4106
|
disabled: boolean;
|
|
4057
4107
|
tag: string;
|
|
4108
|
+
tile: boolean;
|
|
4058
4109
|
density: Density;
|
|
4059
4110
|
slim: boolean;
|
|
4060
4111
|
ripple: boolean | {
|
|
@@ -4126,6 +4177,7 @@ declare const VListItem: {
|
|
|
4126
4177
|
disabled: boolean;
|
|
4127
4178
|
tag: string;
|
|
4128
4179
|
rounded: string | number | boolean;
|
|
4180
|
+
tile: boolean;
|
|
4129
4181
|
density: Density;
|
|
4130
4182
|
slim: boolean;
|
|
4131
4183
|
ripple: boolean | {
|
|
@@ -4170,6 +4222,7 @@ declare const VListItem: {
|
|
|
4170
4222
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
4171
4223
|
default: undefined;
|
|
4172
4224
|
};
|
|
4225
|
+
tile: BooleanConstructor;
|
|
4173
4226
|
elevation: {
|
|
4174
4227
|
type: (StringConstructor | NumberConstructor)[];
|
|
4175
4228
|
validator(v: any): boolean;
|
|
@@ -4244,6 +4297,7 @@ declare const VListItem: {
|
|
|
4244
4297
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
4245
4298
|
default: undefined;
|
|
4246
4299
|
};
|
|
4300
|
+
tile: BooleanConstructor;
|
|
4247
4301
|
elevation: {
|
|
4248
4302
|
type: (StringConstructor | NumberConstructor)[];
|
|
4249
4303
|
validator(v: any): boolean;
|
|
@@ -4367,6 +4421,7 @@ declare const VAutocomplete: {
|
|
|
4367
4421
|
readonly: boolean | null;
|
|
4368
4422
|
noDataText: string;
|
|
4369
4423
|
messages: string | readonly string[];
|
|
4424
|
+
tile: boolean;
|
|
4370
4425
|
density: Density;
|
|
4371
4426
|
valueComparator: typeof deepEqual;
|
|
4372
4427
|
clearIcon: IconValue;
|
|
@@ -4435,6 +4490,7 @@ declare const VAutocomplete: {
|
|
|
4435
4490
|
tag: string;
|
|
4436
4491
|
mandatory: boolean;
|
|
4437
4492
|
rounded: string | number | boolean;
|
|
4493
|
+
tile: boolean;
|
|
4438
4494
|
density: Density;
|
|
4439
4495
|
slim: boolean;
|
|
4440
4496
|
valueComparator: typeof deepEqual;
|
|
@@ -4450,6 +4506,7 @@ declare const VAutocomplete: {
|
|
|
4450
4506
|
disabled: boolean;
|
|
4451
4507
|
tag: string;
|
|
4452
4508
|
mandatory: boolean;
|
|
4509
|
+
tile: boolean;
|
|
4453
4510
|
density: Density;
|
|
4454
4511
|
slim: boolean;
|
|
4455
4512
|
valueComparator: typeof deepEqual;
|
|
@@ -4493,6 +4550,7 @@ declare const VAutocomplete: {
|
|
|
4493
4550
|
disabled: boolean;
|
|
4494
4551
|
tag: string;
|
|
4495
4552
|
mandatory: boolean;
|
|
4553
|
+
tile: boolean;
|
|
4496
4554
|
density: Density;
|
|
4497
4555
|
slim: boolean;
|
|
4498
4556
|
valueComparator: typeof deepEqual;
|
|
@@ -4531,7 +4589,7 @@ declare const VAutocomplete: {
|
|
|
4531
4589
|
value: boolean;
|
|
4532
4590
|
path: unknown[];
|
|
4533
4591
|
}) => any) | undefined;
|
|
4534
|
-
}, "variant" | "nav" | "style" | "disabled" | "tag" | "mandatory" | "rounded" | "density" | "slim" | "valueComparator" | "selectStrategy" | "openStrategy" | "lines" | "returnObject" | "itemType"> & {
|
|
4592
|
+
}, "variant" | "nav" | "style" | "disabled" | "tag" | "mandatory" | "rounded" | "tile" | "density" | "slim" | "valueComparator" | "selectStrategy" | "openStrategy" | "lines" | "returnObject" | "itemType"> & {
|
|
4535
4593
|
items?: readonly any[] | undefined;
|
|
4536
4594
|
itemTitle?: SelectItemKey<any>;
|
|
4537
4595
|
itemValue?: SelectItemKey<any>;
|
|
@@ -4912,6 +4970,7 @@ declare const VAutocomplete: {
|
|
|
4912
4970
|
readonly: boolean | null;
|
|
4913
4971
|
noDataText: string;
|
|
4914
4972
|
messages: string | readonly string[];
|
|
4973
|
+
tile: boolean;
|
|
4915
4974
|
density: Density;
|
|
4916
4975
|
valueComparator: typeof deepEqual;
|
|
4917
4976
|
clearIcon: IconValue;
|
|
@@ -4980,6 +5039,7 @@ declare const VAutocomplete: {
|
|
|
4980
5039
|
tag: string;
|
|
4981
5040
|
mandatory: boolean;
|
|
4982
5041
|
rounded: string | number | boolean;
|
|
5042
|
+
tile: boolean;
|
|
4983
5043
|
density: Density;
|
|
4984
5044
|
slim: boolean;
|
|
4985
5045
|
valueComparator: typeof deepEqual;
|
|
@@ -4995,6 +5055,7 @@ declare const VAutocomplete: {
|
|
|
4995
5055
|
disabled: boolean;
|
|
4996
5056
|
tag: string;
|
|
4997
5057
|
mandatory: boolean;
|
|
5058
|
+
tile: boolean;
|
|
4998
5059
|
density: Density;
|
|
4999
5060
|
slim: boolean;
|
|
5000
5061
|
valueComparator: typeof deepEqual;
|
|
@@ -5038,6 +5099,7 @@ declare const VAutocomplete: {
|
|
|
5038
5099
|
disabled: boolean;
|
|
5039
5100
|
tag: string;
|
|
5040
5101
|
mandatory: boolean;
|
|
5102
|
+
tile: boolean;
|
|
5041
5103
|
density: Density;
|
|
5042
5104
|
slim: boolean;
|
|
5043
5105
|
valueComparator: typeof deepEqual;
|
|
@@ -5076,7 +5138,7 @@ declare const VAutocomplete: {
|
|
|
5076
5138
|
value: boolean;
|
|
5077
5139
|
path: unknown[];
|
|
5078
5140
|
}) => any) | undefined;
|
|
5079
|
-
}, "variant" | "nav" | "style" | "disabled" | "tag" | "mandatory" | "rounded" | "density" | "slim" | "valueComparator" | "selectStrategy" | "openStrategy" | "lines" | "returnObject" | "itemType"> & {
|
|
5141
|
+
}, "variant" | "nav" | "style" | "disabled" | "tag" | "mandatory" | "rounded" | "tile" | "density" | "slim" | "valueComparator" | "selectStrategy" | "openStrategy" | "lines" | "returnObject" | "itemType"> & {
|
|
5080
5142
|
items?: readonly any[] | undefined;
|
|
5081
5143
|
itemTitle?: SelectItemKey<any>;
|
|
5082
5144
|
itemValue?: SelectItemKey<any>;
|
|
@@ -5453,6 +5515,7 @@ declare const VAutocomplete: {
|
|
|
5453
5515
|
noDataText: string;
|
|
5454
5516
|
messages: string | readonly string[];
|
|
5455
5517
|
rounded: string | number | boolean;
|
|
5518
|
+
tile: boolean;
|
|
5456
5519
|
density: Density;
|
|
5457
5520
|
valueComparator: typeof deepEqual;
|
|
5458
5521
|
clearIcon: IconValue;
|
|
@@ -5568,6 +5631,7 @@ declare const VAutocomplete: {
|
|
|
5568
5631
|
readonly: boolean | null;
|
|
5569
5632
|
noDataText: string;
|
|
5570
5633
|
messages: string | readonly string[];
|
|
5634
|
+
tile: boolean;
|
|
5571
5635
|
density: Density;
|
|
5572
5636
|
valueComparator: typeof deepEqual;
|
|
5573
5637
|
clearIcon: IconValue;
|
|
@@ -5636,6 +5700,7 @@ declare const VAutocomplete: {
|
|
|
5636
5700
|
tag: string;
|
|
5637
5701
|
mandatory: boolean;
|
|
5638
5702
|
rounded: string | number | boolean;
|
|
5703
|
+
tile: boolean;
|
|
5639
5704
|
density: Density;
|
|
5640
5705
|
slim: boolean;
|
|
5641
5706
|
valueComparator: typeof deepEqual;
|
|
@@ -5651,6 +5716,7 @@ declare const VAutocomplete: {
|
|
|
5651
5716
|
disabled: boolean;
|
|
5652
5717
|
tag: string;
|
|
5653
5718
|
mandatory: boolean;
|
|
5719
|
+
tile: boolean;
|
|
5654
5720
|
density: Density;
|
|
5655
5721
|
slim: boolean;
|
|
5656
5722
|
valueComparator: typeof deepEqual;
|
|
@@ -5694,6 +5760,7 @@ declare const VAutocomplete: {
|
|
|
5694
5760
|
disabled: boolean;
|
|
5695
5761
|
tag: string;
|
|
5696
5762
|
mandatory: boolean;
|
|
5763
|
+
tile: boolean;
|
|
5697
5764
|
density: Density;
|
|
5698
5765
|
slim: boolean;
|
|
5699
5766
|
valueComparator: typeof deepEqual;
|
|
@@ -5732,7 +5799,7 @@ declare const VAutocomplete: {
|
|
|
5732
5799
|
value: boolean;
|
|
5733
5800
|
path: unknown[];
|
|
5734
5801
|
}) => any) | undefined;
|
|
5735
|
-
}, "variant" | "nav" | "style" | "disabled" | "tag" | "mandatory" | "rounded" | "density" | "slim" | "valueComparator" | "selectStrategy" | "openStrategy" | "lines" | "returnObject" | "itemType"> & {
|
|
5802
|
+
}, "variant" | "nav" | "style" | "disabled" | "tag" | "mandatory" | "rounded" | "tile" | "density" | "slim" | "valueComparator" | "selectStrategy" | "openStrategy" | "lines" | "returnObject" | "itemType"> & {
|
|
5736
5803
|
items?: readonly any[] | undefined;
|
|
5737
5804
|
itemTitle?: SelectItemKey<any>;
|
|
5738
5805
|
itemValue?: SelectItemKey<any>;
|
|
@@ -6109,6 +6176,7 @@ declare const VAutocomplete: {
|
|
|
6109
6176
|
noDataText: string;
|
|
6110
6177
|
messages: string | readonly string[];
|
|
6111
6178
|
rounded: string | number | boolean;
|
|
6179
|
+
tile: boolean;
|
|
6112
6180
|
density: Density;
|
|
6113
6181
|
valueComparator: typeof deepEqual;
|
|
6114
6182
|
clearIcon: IconValue;
|
|
@@ -6161,6 +6229,7 @@ declare const VAutocomplete: {
|
|
|
6161
6229
|
readonly: boolean | null;
|
|
6162
6230
|
noDataText: string;
|
|
6163
6231
|
messages: string | readonly string[];
|
|
6232
|
+
tile: boolean;
|
|
6164
6233
|
density: Density;
|
|
6165
6234
|
valueComparator: typeof deepEqual;
|
|
6166
6235
|
clearIcon: IconValue;
|
|
@@ -6229,6 +6298,7 @@ declare const VAutocomplete: {
|
|
|
6229
6298
|
tag: string;
|
|
6230
6299
|
mandatory: boolean;
|
|
6231
6300
|
rounded: string | number | boolean;
|
|
6301
|
+
tile: boolean;
|
|
6232
6302
|
density: Density;
|
|
6233
6303
|
slim: boolean;
|
|
6234
6304
|
valueComparator: typeof deepEqual;
|
|
@@ -6244,6 +6314,7 @@ declare const VAutocomplete: {
|
|
|
6244
6314
|
disabled: boolean;
|
|
6245
6315
|
tag: string;
|
|
6246
6316
|
mandatory: boolean;
|
|
6317
|
+
tile: boolean;
|
|
6247
6318
|
density: Density;
|
|
6248
6319
|
slim: boolean;
|
|
6249
6320
|
valueComparator: typeof deepEqual;
|
|
@@ -6287,6 +6358,7 @@ declare const VAutocomplete: {
|
|
|
6287
6358
|
disabled: boolean;
|
|
6288
6359
|
tag: string;
|
|
6289
6360
|
mandatory: boolean;
|
|
6361
|
+
tile: boolean;
|
|
6290
6362
|
density: Density;
|
|
6291
6363
|
slim: boolean;
|
|
6292
6364
|
valueComparator: typeof deepEqual;
|
|
@@ -6325,7 +6397,7 @@ declare const VAutocomplete: {
|
|
|
6325
6397
|
value: boolean;
|
|
6326
6398
|
path: unknown[];
|
|
6327
6399
|
}) => any) | undefined;
|
|
6328
|
-
}, "variant" | "nav" | "style" | "disabled" | "tag" | "mandatory" | "rounded" | "density" | "slim" | "valueComparator" | "selectStrategy" | "openStrategy" | "lines" | "returnObject" | "itemType"> & {
|
|
6400
|
+
}, "variant" | "nav" | "style" | "disabled" | "tag" | "mandatory" | "rounded" | "tile" | "density" | "slim" | "valueComparator" | "selectStrategy" | "openStrategy" | "lines" | "returnObject" | "itemType"> & {
|
|
6329
6401
|
items?: readonly any[] | undefined;
|
|
6330
6402
|
itemTitle?: SelectItemKey<any>;
|
|
6331
6403
|
itemValue?: SelectItemKey<any>;
|
|
@@ -6707,6 +6779,7 @@ declare const VAutocomplete: {
|
|
|
6707
6779
|
noDataText: string;
|
|
6708
6780
|
messages: string | readonly string[];
|
|
6709
6781
|
rounded: string | number | boolean;
|
|
6782
|
+
tile: boolean;
|
|
6710
6783
|
density: Density;
|
|
6711
6784
|
valueComparator: typeof deepEqual;
|
|
6712
6785
|
clearIcon: IconValue;
|
|
@@ -6917,6 +6990,7 @@ declare const VAutocomplete: {
|
|
|
6917
6990
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
6918
6991
|
default: undefined;
|
|
6919
6992
|
};
|
|
6993
|
+
tile: BooleanConstructor;
|
|
6920
6994
|
density: {
|
|
6921
6995
|
type: PropType<Density>;
|
|
6922
6996
|
default: string;
|
|
@@ -7021,6 +7095,7 @@ declare const VAutocomplete: {
|
|
|
7021
7095
|
tag: string;
|
|
7022
7096
|
mandatory: boolean;
|
|
7023
7097
|
rounded: string | number | boolean;
|
|
7098
|
+
tile: boolean;
|
|
7024
7099
|
density: Density;
|
|
7025
7100
|
slim: boolean;
|
|
7026
7101
|
valueComparator: typeof deepEqual;
|
|
@@ -7036,6 +7111,7 @@ declare const VAutocomplete: {
|
|
|
7036
7111
|
disabled: boolean;
|
|
7037
7112
|
tag: string;
|
|
7038
7113
|
mandatory: boolean;
|
|
7114
|
+
tile: boolean;
|
|
7039
7115
|
density: Density;
|
|
7040
7116
|
slim: boolean;
|
|
7041
7117
|
valueComparator: typeof deepEqual;
|
|
@@ -7079,6 +7155,7 @@ declare const VAutocomplete: {
|
|
|
7079
7155
|
disabled: boolean;
|
|
7080
7156
|
tag: string;
|
|
7081
7157
|
mandatory: boolean;
|
|
7158
|
+
tile: boolean;
|
|
7082
7159
|
density: Density;
|
|
7083
7160
|
slim: boolean;
|
|
7084
7161
|
valueComparator: typeof deepEqual;
|
|
@@ -7117,7 +7194,7 @@ declare const VAutocomplete: {
|
|
|
7117
7194
|
value: boolean;
|
|
7118
7195
|
path: unknown[];
|
|
7119
7196
|
}) => any) | undefined;
|
|
7120
|
-
}, "variant" | "nav" | "style" | "disabled" | "tag" | "mandatory" | "rounded" | "density" | "slim" | "valueComparator" | "selectStrategy" | "openStrategy" | "lines" | "returnObject" | "itemType"> & {
|
|
7197
|
+
}, "variant" | "nav" | "style" | "disabled" | "tag" | "mandatory" | "rounded" | "tile" | "density" | "slim" | "valueComparator" | "selectStrategy" | "openStrategy" | "lines" | "returnObject" | "itemType"> & {
|
|
7121
7198
|
items?: readonly any[] | undefined;
|
|
7122
7199
|
itemTitle?: SelectItemKey<any>;
|
|
7123
7200
|
itemValue?: SelectItemKey<any>;
|
|
@@ -7566,6 +7643,7 @@ declare const VAutocomplete: {
|
|
|
7566
7643
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
7567
7644
|
default: undefined;
|
|
7568
7645
|
};
|
|
7646
|
+
tile: BooleanConstructor;
|
|
7569
7647
|
density: {
|
|
7570
7648
|
type: PropType<Density>;
|
|
7571
7649
|
default: string;
|
|
@@ -7670,6 +7748,7 @@ declare const VAutocomplete: {
|
|
|
7670
7748
|
tag: string;
|
|
7671
7749
|
mandatory: boolean;
|
|
7672
7750
|
rounded: string | number | boolean;
|
|
7751
|
+
tile: boolean;
|
|
7673
7752
|
density: Density;
|
|
7674
7753
|
slim: boolean;
|
|
7675
7754
|
valueComparator: typeof deepEqual;
|
|
@@ -7685,6 +7764,7 @@ declare const VAutocomplete: {
|
|
|
7685
7764
|
disabled: boolean;
|
|
7686
7765
|
tag: string;
|
|
7687
7766
|
mandatory: boolean;
|
|
7767
|
+
tile: boolean;
|
|
7688
7768
|
density: Density;
|
|
7689
7769
|
slim: boolean;
|
|
7690
7770
|
valueComparator: typeof deepEqual;
|
|
@@ -7728,6 +7808,7 @@ declare const VAutocomplete: {
|
|
|
7728
7808
|
disabled: boolean;
|
|
7729
7809
|
tag: string;
|
|
7730
7810
|
mandatory: boolean;
|
|
7811
|
+
tile: boolean;
|
|
7731
7812
|
density: Density;
|
|
7732
7813
|
slim: boolean;
|
|
7733
7814
|
valueComparator: typeof deepEqual;
|
|
@@ -7766,7 +7847,7 @@ declare const VAutocomplete: {
|
|
|
7766
7847
|
value: boolean;
|
|
7767
7848
|
path: unknown[];
|
|
7768
7849
|
}) => any) | undefined;
|
|
7769
|
-
}, "variant" | "nav" | "style" | "disabled" | "tag" | "mandatory" | "rounded" | "density" | "slim" | "valueComparator" | "selectStrategy" | "openStrategy" | "lines" | "returnObject" | "itemType"> & {
|
|
7850
|
+
}, "variant" | "nav" | "style" | "disabled" | "tag" | "mandatory" | "rounded" | "tile" | "density" | "slim" | "valueComparator" | "selectStrategy" | "openStrategy" | "lines" | "returnObject" | "itemType"> & {
|
|
7770
7851
|
items?: readonly any[] | undefined;
|
|
7771
7852
|
itemTitle?: SelectItemKey<any>;
|
|
7772
7853
|
itemValue?: SelectItemKey<any>;
|
|
@@ -8158,6 +8239,7 @@ declare const VAvatar: {
|
|
|
8158
8239
|
style: vue.StyleValue;
|
|
8159
8240
|
size: string | number;
|
|
8160
8241
|
tag: string;
|
|
8242
|
+
tile: boolean;
|
|
8161
8243
|
density: Density;
|
|
8162
8244
|
} & {
|
|
8163
8245
|
color?: string | undefined;
|
|
@@ -8183,6 +8265,7 @@ declare const VAvatar: {
|
|
|
8183
8265
|
style: vue.StyleValue;
|
|
8184
8266
|
size: string | number;
|
|
8185
8267
|
tag: string;
|
|
8268
|
+
tile: boolean;
|
|
8186
8269
|
density: Density;
|
|
8187
8270
|
} & {
|
|
8188
8271
|
color?: string | undefined;
|
|
@@ -8209,6 +8292,7 @@ declare const VAvatar: {
|
|
|
8209
8292
|
size: string | number;
|
|
8210
8293
|
tag: string;
|
|
8211
8294
|
rounded: string | number | boolean;
|
|
8295
|
+
tile: boolean;
|
|
8212
8296
|
density: Density;
|
|
8213
8297
|
}, true, {}, vue.SlotsType<Partial<{
|
|
8214
8298
|
default: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
@@ -8228,6 +8312,7 @@ declare const VAvatar: {
|
|
|
8228
8312
|
style: vue.StyleValue;
|
|
8229
8313
|
size: string | number;
|
|
8230
8314
|
tag: string;
|
|
8315
|
+
tile: boolean;
|
|
8231
8316
|
density: Density;
|
|
8232
8317
|
} & {
|
|
8233
8318
|
color?: string | undefined;
|
|
@@ -8254,6 +8339,7 @@ declare const VAvatar: {
|
|
|
8254
8339
|
size: string | number;
|
|
8255
8340
|
tag: string;
|
|
8256
8341
|
rounded: string | number | boolean;
|
|
8342
|
+
tile: boolean;
|
|
8257
8343
|
density: Density;
|
|
8258
8344
|
}>;
|
|
8259
8345
|
__isFragment?: undefined;
|
|
@@ -8266,6 +8352,7 @@ declare const VAvatar: {
|
|
|
8266
8352
|
style: vue.StyleValue;
|
|
8267
8353
|
size: string | number;
|
|
8268
8354
|
tag: string;
|
|
8355
|
+
tile: boolean;
|
|
8269
8356
|
density: Density;
|
|
8270
8357
|
} & {
|
|
8271
8358
|
color?: string | undefined;
|
|
@@ -8292,6 +8379,7 @@ declare const VAvatar: {
|
|
|
8292
8379
|
size: string | number;
|
|
8293
8380
|
tag: string;
|
|
8294
8381
|
rounded: string | number | boolean;
|
|
8382
|
+
tile: boolean;
|
|
8295
8383
|
density: Density;
|
|
8296
8384
|
}, {}, string, vue.SlotsType<Partial<{
|
|
8297
8385
|
default: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
@@ -8320,6 +8408,7 @@ declare const VAvatar: {
|
|
|
8320
8408
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
8321
8409
|
default: undefined;
|
|
8322
8410
|
};
|
|
8411
|
+
tile: BooleanConstructor;
|
|
8323
8412
|
density: {
|
|
8324
8413
|
type: vue.PropType<Density>;
|
|
8325
8414
|
default: string;
|
|
@@ -8358,6 +8447,7 @@ declare const VAvatar: {
|
|
|
8358
8447
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
8359
8448
|
default: undefined;
|
|
8360
8449
|
};
|
|
8450
|
+
tile: BooleanConstructor;
|
|
8361
8451
|
density: {
|
|
8362
8452
|
type: vue.PropType<Density>;
|
|
8363
8453
|
default: string;
|
|
@@ -8387,6 +8477,7 @@ declare const VBadge: {
|
|
|
8387
8477
|
style: vue.StyleValue;
|
|
8388
8478
|
tag: string;
|
|
8389
8479
|
dot: boolean;
|
|
8480
|
+
tile: boolean;
|
|
8390
8481
|
floating: boolean;
|
|
8391
8482
|
modelValue: boolean;
|
|
8392
8483
|
bordered: boolean;
|
|
@@ -8423,6 +8514,7 @@ declare const VBadge: {
|
|
|
8423
8514
|
style: vue.StyleValue;
|
|
8424
8515
|
tag: string;
|
|
8425
8516
|
dot: boolean;
|
|
8517
|
+
tile: boolean;
|
|
8426
8518
|
floating: boolean;
|
|
8427
8519
|
modelValue: boolean;
|
|
8428
8520
|
bordered: boolean;
|
|
@@ -8460,6 +8552,7 @@ declare const VBadge: {
|
|
|
8460
8552
|
tag: string;
|
|
8461
8553
|
dot: boolean;
|
|
8462
8554
|
rounded: string | number | boolean;
|
|
8555
|
+
tile: boolean;
|
|
8463
8556
|
floating: boolean;
|
|
8464
8557
|
modelValue: boolean;
|
|
8465
8558
|
bordered: boolean;
|
|
@@ -8487,6 +8580,7 @@ declare const VBadge: {
|
|
|
8487
8580
|
style: vue.StyleValue;
|
|
8488
8581
|
tag: string;
|
|
8489
8582
|
dot: boolean;
|
|
8583
|
+
tile: boolean;
|
|
8490
8584
|
floating: boolean;
|
|
8491
8585
|
modelValue: boolean;
|
|
8492
8586
|
bordered: boolean;
|
|
@@ -8524,6 +8618,7 @@ declare const VBadge: {
|
|
|
8524
8618
|
tag: string;
|
|
8525
8619
|
dot: boolean;
|
|
8526
8620
|
rounded: string | number | boolean;
|
|
8621
|
+
tile: boolean;
|
|
8527
8622
|
floating: boolean;
|
|
8528
8623
|
modelValue: boolean;
|
|
8529
8624
|
bordered: boolean;
|
|
@@ -8541,6 +8636,7 @@ declare const VBadge: {
|
|
|
8541
8636
|
style: vue.StyleValue;
|
|
8542
8637
|
tag: string;
|
|
8543
8638
|
dot: boolean;
|
|
8639
|
+
tile: boolean;
|
|
8544
8640
|
floating: boolean;
|
|
8545
8641
|
modelValue: boolean;
|
|
8546
8642
|
bordered: boolean;
|
|
@@ -8578,6 +8674,7 @@ declare const VBadge: {
|
|
|
8578
8674
|
tag: string;
|
|
8579
8675
|
dot: boolean;
|
|
8580
8676
|
rounded: string | number | boolean;
|
|
8677
|
+
tile: boolean;
|
|
8581
8678
|
floating: boolean;
|
|
8582
8679
|
modelValue: boolean;
|
|
8583
8680
|
bordered: boolean;
|
|
@@ -8612,6 +8709,7 @@ declare const VBadge: {
|
|
|
8612
8709
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
8613
8710
|
default: undefined;
|
|
8614
8711
|
};
|
|
8712
|
+
tile: BooleanConstructor;
|
|
8615
8713
|
location: {
|
|
8616
8714
|
type: vue.PropType<NonNullable<Anchor>>;
|
|
8617
8715
|
default: NonNullable<Anchor>;
|
|
@@ -8664,6 +8762,7 @@ declare const VBadge: {
|
|
|
8664
8762
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
8665
8763
|
default: undefined;
|
|
8666
8764
|
};
|
|
8765
|
+
tile: BooleanConstructor;
|
|
8667
8766
|
location: {
|
|
8668
8767
|
type: vue.PropType<NonNullable<Anchor>>;
|
|
8669
8768
|
default: NonNullable<Anchor>;
|
|
@@ -8704,6 +8803,7 @@ declare const VBanner: {
|
|
|
8704
8803
|
style: vue.StyleValue;
|
|
8705
8804
|
tag: string;
|
|
8706
8805
|
sticky: boolean;
|
|
8806
|
+
tile: boolean;
|
|
8707
8807
|
density: Density;
|
|
8708
8808
|
stacked: boolean;
|
|
8709
8809
|
} & {
|
|
@@ -8749,6 +8849,7 @@ declare const VBanner: {
|
|
|
8749
8849
|
style: vue.StyleValue;
|
|
8750
8850
|
tag: string;
|
|
8751
8851
|
sticky: boolean;
|
|
8852
|
+
tile: boolean;
|
|
8752
8853
|
density: Density;
|
|
8753
8854
|
stacked: boolean;
|
|
8754
8855
|
} & {
|
|
@@ -8795,6 +8896,7 @@ declare const VBanner: {
|
|
|
8795
8896
|
tag: string;
|
|
8796
8897
|
sticky: boolean;
|
|
8797
8898
|
rounded: string | number | boolean;
|
|
8899
|
+
tile: boolean;
|
|
8798
8900
|
density: Density;
|
|
8799
8901
|
stacked: boolean;
|
|
8800
8902
|
}, true, {}, vue.SlotsType<Partial<{
|
|
@@ -8821,6 +8923,7 @@ declare const VBanner: {
|
|
|
8821
8923
|
style: vue.StyleValue;
|
|
8822
8924
|
tag: string;
|
|
8823
8925
|
sticky: boolean;
|
|
8926
|
+
tile: boolean;
|
|
8824
8927
|
density: Density;
|
|
8825
8928
|
stacked: boolean;
|
|
8826
8929
|
} & {
|
|
@@ -8867,6 +8970,7 @@ declare const VBanner: {
|
|
|
8867
8970
|
tag: string;
|
|
8868
8971
|
sticky: boolean;
|
|
8869
8972
|
rounded: string | number | boolean;
|
|
8973
|
+
tile: boolean;
|
|
8870
8974
|
density: Density;
|
|
8871
8975
|
stacked: boolean;
|
|
8872
8976
|
}>;
|
|
@@ -8877,6 +8981,7 @@ declare const VBanner: {
|
|
|
8877
8981
|
style: vue.StyleValue;
|
|
8878
8982
|
tag: string;
|
|
8879
8983
|
sticky: boolean;
|
|
8984
|
+
tile: boolean;
|
|
8880
8985
|
density: Density;
|
|
8881
8986
|
stacked: boolean;
|
|
8882
8987
|
} & {
|
|
@@ -8923,6 +9028,7 @@ declare const VBanner: {
|
|
|
8923
9028
|
tag: string;
|
|
8924
9029
|
sticky: boolean;
|
|
8925
9030
|
rounded: string | number | boolean;
|
|
9031
|
+
tile: boolean;
|
|
8926
9032
|
density: Density;
|
|
8927
9033
|
stacked: boolean;
|
|
8928
9034
|
}, {}, string, vue.SlotsType<Partial<{
|
|
@@ -8948,6 +9054,7 @@ declare const VBanner: {
|
|
|
8948
9054
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
8949
9055
|
default: undefined;
|
|
8950
9056
|
};
|
|
9057
|
+
tile: BooleanConstructor;
|
|
8951
9058
|
position: {
|
|
8952
9059
|
type: PropType<"fixed" | "absolute" | "static" | "sticky" | "relative">;
|
|
8953
9060
|
validator: (v: any) => boolean;
|
|
@@ -8993,6 +9100,7 @@ declare const VBanner: {
|
|
|
8993
9100
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
8994
9101
|
default: undefined;
|
|
8995
9102
|
};
|
|
9103
|
+
tile: BooleanConstructor;
|
|
8996
9104
|
position: {
|
|
8997
9105
|
type: PropType<"fixed" | "absolute" | "static" | "sticky" | "relative">;
|
|
8998
9106
|
validator: (v: any) => boolean;
|
|
@@ -9261,6 +9369,7 @@ declare const VBottomNavigation: {
|
|
|
9261
9369
|
disabled: boolean;
|
|
9262
9370
|
multiple: boolean;
|
|
9263
9371
|
tag: string;
|
|
9372
|
+
tile: boolean;
|
|
9264
9373
|
density: Density;
|
|
9265
9374
|
selectedClass: string;
|
|
9266
9375
|
grow: boolean;
|
|
@@ -9287,6 +9396,7 @@ declare const VBottomNavigation: {
|
|
|
9287
9396
|
disabled: boolean;
|
|
9288
9397
|
multiple: boolean;
|
|
9289
9398
|
tag: string;
|
|
9399
|
+
tile: boolean;
|
|
9290
9400
|
density: Density;
|
|
9291
9401
|
selectedClass: string;
|
|
9292
9402
|
grow: boolean;
|
|
@@ -9312,6 +9422,7 @@ declare const VBottomNavigation: {
|
|
|
9312
9422
|
multiple: boolean;
|
|
9313
9423
|
tag: string;
|
|
9314
9424
|
rounded: string | number | boolean;
|
|
9425
|
+
tile: boolean;
|
|
9315
9426
|
density: Density;
|
|
9316
9427
|
selectedClass: string;
|
|
9317
9428
|
grow: boolean;
|
|
@@ -9336,6 +9447,7 @@ declare const VBottomNavigation: {
|
|
|
9336
9447
|
disabled: boolean;
|
|
9337
9448
|
multiple: boolean;
|
|
9338
9449
|
tag: string;
|
|
9450
|
+
tile: boolean;
|
|
9339
9451
|
density: Density;
|
|
9340
9452
|
selectedClass: string;
|
|
9341
9453
|
grow: boolean;
|
|
@@ -9361,6 +9473,7 @@ declare const VBottomNavigation: {
|
|
|
9361
9473
|
multiple: boolean;
|
|
9362
9474
|
tag: string;
|
|
9363
9475
|
rounded: string | number | boolean;
|
|
9476
|
+
tile: boolean;
|
|
9364
9477
|
density: Density;
|
|
9365
9478
|
selectedClass: string;
|
|
9366
9479
|
grow: boolean;
|
|
@@ -9378,6 +9491,7 @@ declare const VBottomNavigation: {
|
|
|
9378
9491
|
disabled: boolean;
|
|
9379
9492
|
multiple: boolean;
|
|
9380
9493
|
tag: string;
|
|
9494
|
+
tile: boolean;
|
|
9381
9495
|
density: Density;
|
|
9382
9496
|
selectedClass: string;
|
|
9383
9497
|
grow: boolean;
|
|
@@ -9405,6 +9519,7 @@ declare const VBottomNavigation: {
|
|
|
9405
9519
|
multiple: boolean;
|
|
9406
9520
|
tag: string;
|
|
9407
9521
|
rounded: string | number | boolean;
|
|
9522
|
+
tile: boolean;
|
|
9408
9523
|
density: Density;
|
|
9409
9524
|
selectedClass: string;
|
|
9410
9525
|
grow: boolean;
|
|
@@ -9461,6 +9576,7 @@ declare const VBottomNavigation: {
|
|
|
9461
9576
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
9462
9577
|
default: undefined;
|
|
9463
9578
|
};
|
|
9579
|
+
tile: BooleanConstructor;
|
|
9464
9580
|
elevation: {
|
|
9465
9581
|
type: (StringConstructor | NumberConstructor)[];
|
|
9466
9582
|
validator(v: any): boolean;
|
|
@@ -9530,6 +9646,7 @@ declare const VBottomNavigation: {
|
|
|
9530
9646
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
9531
9647
|
default: undefined;
|
|
9532
9648
|
};
|
|
9649
|
+
tile: BooleanConstructor;
|
|
9533
9650
|
elevation: {
|
|
9534
9651
|
type: (StringConstructor | NumberConstructor)[];
|
|
9535
9652
|
validator(v: any): boolean;
|
|
@@ -10283,6 +10400,7 @@ declare const VBreadcrumbs: {
|
|
|
10283
10400
|
disabled: boolean;
|
|
10284
10401
|
tag: string;
|
|
10285
10402
|
divider: string;
|
|
10403
|
+
tile: boolean;
|
|
10286
10404
|
density: Density;
|
|
10287
10405
|
} & {
|
|
10288
10406
|
color?: string | undefined;
|
|
@@ -10297,6 +10415,7 @@ declare const VBreadcrumbs: {
|
|
|
10297
10415
|
disabled: boolean;
|
|
10298
10416
|
tag: string;
|
|
10299
10417
|
divider: string;
|
|
10418
|
+
tile: boolean;
|
|
10300
10419
|
density: Density;
|
|
10301
10420
|
} & {
|
|
10302
10421
|
color?: string | undefined;
|
|
@@ -10312,6 +10431,7 @@ declare const VBreadcrumbs: {
|
|
|
10312
10431
|
tag: string;
|
|
10313
10432
|
divider: string;
|
|
10314
10433
|
rounded: string | number | boolean;
|
|
10434
|
+
tile: boolean;
|
|
10315
10435
|
density: Density;
|
|
10316
10436
|
}, true, {}, vue.SlotsType<Partial<{
|
|
10317
10437
|
prepend: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
@@ -10350,6 +10470,7 @@ declare const VBreadcrumbs: {
|
|
|
10350
10470
|
disabled: boolean;
|
|
10351
10471
|
tag: string;
|
|
10352
10472
|
divider: string;
|
|
10473
|
+
tile: boolean;
|
|
10353
10474
|
density: Density;
|
|
10354
10475
|
} & {
|
|
10355
10476
|
color?: string | undefined;
|
|
@@ -10365,6 +10486,7 @@ declare const VBreadcrumbs: {
|
|
|
10365
10486
|
tag: string;
|
|
10366
10487
|
divider: string;
|
|
10367
10488
|
rounded: string | number | boolean;
|
|
10489
|
+
tile: boolean;
|
|
10368
10490
|
density: Density;
|
|
10369
10491
|
}>;
|
|
10370
10492
|
__isFragment?: undefined;
|
|
@@ -10375,6 +10497,7 @@ declare const VBreadcrumbs: {
|
|
|
10375
10497
|
disabled: boolean;
|
|
10376
10498
|
tag: string;
|
|
10377
10499
|
divider: string;
|
|
10500
|
+
tile: boolean;
|
|
10378
10501
|
density: Density;
|
|
10379
10502
|
} & {
|
|
10380
10503
|
color?: string | undefined;
|
|
@@ -10390,6 +10513,7 @@ declare const VBreadcrumbs: {
|
|
|
10390
10513
|
tag: string;
|
|
10391
10514
|
divider: string;
|
|
10392
10515
|
rounded: string | number | boolean;
|
|
10516
|
+
tile: boolean;
|
|
10393
10517
|
density: Density;
|
|
10394
10518
|
}, {}, string, vue.SlotsType<Partial<{
|
|
10395
10519
|
prepend: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
@@ -10462,6 +10586,7 @@ declare const VBreadcrumbs: {
|
|
|
10462
10586
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
10463
10587
|
default: undefined;
|
|
10464
10588
|
};
|
|
10589
|
+
tile: BooleanConstructor;
|
|
10465
10590
|
density: {
|
|
10466
10591
|
type: PropType<Density>;
|
|
10467
10592
|
default: string;
|
|
@@ -10498,6 +10623,7 @@ declare const VBreadcrumbs: {
|
|
|
10498
10623
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
10499
10624
|
default: undefined;
|
|
10500
10625
|
};
|
|
10626
|
+
tile: BooleanConstructor;
|
|
10501
10627
|
density: {
|
|
10502
10628
|
type: PropType<Density>;
|
|
10503
10629
|
default: string;
|
|
@@ -10822,6 +10948,7 @@ declare const VBtn: {
|
|
|
10822
10948
|
disabled: boolean;
|
|
10823
10949
|
size: string | number;
|
|
10824
10950
|
tag: string;
|
|
10951
|
+
tile: boolean;
|
|
10825
10952
|
density: Density;
|
|
10826
10953
|
slim: boolean;
|
|
10827
10954
|
stacked: boolean;
|
|
@@ -10892,6 +11019,7 @@ declare const VBtn: {
|
|
|
10892
11019
|
disabled: boolean;
|
|
10893
11020
|
size: string | number;
|
|
10894
11021
|
tag: string;
|
|
11022
|
+
tile: boolean;
|
|
10895
11023
|
density: Density;
|
|
10896
11024
|
slim: boolean;
|
|
10897
11025
|
stacked: boolean;
|
|
@@ -10958,6 +11086,7 @@ declare const VBtn: {
|
|
|
10958
11086
|
size: string | number;
|
|
10959
11087
|
tag: string;
|
|
10960
11088
|
rounded: string | number | boolean;
|
|
11089
|
+
tile: boolean;
|
|
10961
11090
|
density: Density;
|
|
10962
11091
|
slim: boolean;
|
|
10963
11092
|
stacked: boolean;
|
|
@@ -10995,6 +11124,7 @@ declare const VBtn: {
|
|
|
10995
11124
|
disabled: boolean;
|
|
10996
11125
|
size: string | number;
|
|
10997
11126
|
tag: string;
|
|
11127
|
+
tile: boolean;
|
|
10998
11128
|
density: Density;
|
|
10999
11129
|
slim: boolean;
|
|
11000
11130
|
stacked: boolean;
|
|
@@ -11063,6 +11193,7 @@ declare const VBtn: {
|
|
|
11063
11193
|
size: string | number;
|
|
11064
11194
|
tag: string;
|
|
11065
11195
|
rounded: string | number | boolean;
|
|
11196
|
+
tile: boolean;
|
|
11066
11197
|
density: Density;
|
|
11067
11198
|
slim: boolean;
|
|
11068
11199
|
stacked: boolean;
|
|
@@ -11084,6 +11215,7 @@ declare const VBtn: {
|
|
|
11084
11215
|
disabled: boolean;
|
|
11085
11216
|
size: string | number;
|
|
11086
11217
|
tag: string;
|
|
11218
|
+
tile: boolean;
|
|
11087
11219
|
density: Density;
|
|
11088
11220
|
slim: boolean;
|
|
11089
11221
|
stacked: boolean;
|
|
@@ -11156,6 +11288,7 @@ declare const VBtn: {
|
|
|
11156
11288
|
size: string | number;
|
|
11157
11289
|
tag: string;
|
|
11158
11290
|
rounded: string | number | boolean;
|
|
11291
|
+
tile: boolean;
|
|
11159
11292
|
density: Density;
|
|
11160
11293
|
slim: boolean;
|
|
11161
11294
|
stacked: boolean;
|
|
@@ -11205,6 +11338,7 @@ declare const VBtn: {
|
|
|
11205
11338
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
11206
11339
|
default: undefined;
|
|
11207
11340
|
};
|
|
11341
|
+
tile: BooleanConstructor;
|
|
11208
11342
|
position: {
|
|
11209
11343
|
type: PropType<"fixed" | "absolute" | "static" | "sticky" | "relative">;
|
|
11210
11344
|
validator: (v: any) => boolean;
|
|
@@ -11287,6 +11421,7 @@ declare const VBtn: {
|
|
|
11287
11421
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
11288
11422
|
default: undefined;
|
|
11289
11423
|
};
|
|
11424
|
+
tile: BooleanConstructor;
|
|
11290
11425
|
position: {
|
|
11291
11426
|
type: PropType<"fixed" | "absolute" | "static" | "sticky" | "relative">;
|
|
11292
11427
|
validator: (v: any) => boolean;
|
|
@@ -11347,6 +11482,7 @@ declare const VBtnGroup: {
|
|
|
11347
11482
|
variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
|
|
11348
11483
|
style: vue.StyleValue;
|
|
11349
11484
|
tag: string;
|
|
11485
|
+
tile: boolean;
|
|
11350
11486
|
density: Density;
|
|
11351
11487
|
divided: boolean;
|
|
11352
11488
|
} & {
|
|
@@ -11369,6 +11505,7 @@ declare const VBtnGroup: {
|
|
|
11369
11505
|
variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
|
|
11370
11506
|
style: vue.StyleValue;
|
|
11371
11507
|
tag: string;
|
|
11508
|
+
tile: boolean;
|
|
11372
11509
|
density: Density;
|
|
11373
11510
|
divided: boolean;
|
|
11374
11511
|
} & {
|
|
@@ -11392,6 +11529,7 @@ declare const VBtnGroup: {
|
|
|
11392
11529
|
style: vue.StyleValue;
|
|
11393
11530
|
tag: string;
|
|
11394
11531
|
rounded: string | number | boolean;
|
|
11532
|
+
tile: boolean;
|
|
11395
11533
|
density: Density;
|
|
11396
11534
|
divided: boolean;
|
|
11397
11535
|
}, true, {}, vue.SlotsType<Partial<{
|
|
@@ -11409,6 +11547,7 @@ declare const VBtnGroup: {
|
|
|
11409
11547
|
variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
|
|
11410
11548
|
style: vue.StyleValue;
|
|
11411
11549
|
tag: string;
|
|
11550
|
+
tile: boolean;
|
|
11412
11551
|
density: Density;
|
|
11413
11552
|
divided: boolean;
|
|
11414
11553
|
} & {
|
|
@@ -11432,6 +11571,7 @@ declare const VBtnGroup: {
|
|
|
11432
11571
|
style: vue.StyleValue;
|
|
11433
11572
|
tag: string;
|
|
11434
11573
|
rounded: string | number | boolean;
|
|
11574
|
+
tile: boolean;
|
|
11435
11575
|
density: Density;
|
|
11436
11576
|
divided: boolean;
|
|
11437
11577
|
}>;
|
|
@@ -11442,6 +11582,7 @@ declare const VBtnGroup: {
|
|
|
11442
11582
|
variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
|
|
11443
11583
|
style: vue.StyleValue;
|
|
11444
11584
|
tag: string;
|
|
11585
|
+
tile: boolean;
|
|
11445
11586
|
density: Density;
|
|
11446
11587
|
divided: boolean;
|
|
11447
11588
|
} & {
|
|
@@ -11465,6 +11606,7 @@ declare const VBtnGroup: {
|
|
|
11465
11606
|
style: vue.StyleValue;
|
|
11466
11607
|
tag: string;
|
|
11467
11608
|
rounded: string | number | boolean;
|
|
11609
|
+
tile: boolean;
|
|
11468
11610
|
density: Density;
|
|
11469
11611
|
divided: boolean;
|
|
11470
11612
|
}, {}, string, vue.SlotsType<Partial<{
|
|
@@ -11487,6 +11629,7 @@ declare const VBtnGroup: {
|
|
|
11487
11629
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
11488
11630
|
default: undefined;
|
|
11489
11631
|
};
|
|
11632
|
+
tile: BooleanConstructor;
|
|
11490
11633
|
elevation: {
|
|
11491
11634
|
type: (StringConstructor | NumberConstructor)[];
|
|
11492
11635
|
validator(v: any): boolean;
|
|
@@ -11519,6 +11662,7 @@ declare const VBtnGroup: {
|
|
|
11519
11662
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
11520
11663
|
default: undefined;
|
|
11521
11664
|
};
|
|
11665
|
+
tile: BooleanConstructor;
|
|
11522
11666
|
elevation: {
|
|
11523
11667
|
type: (StringConstructor | NumberConstructor)[];
|
|
11524
11668
|
validator(v: any): boolean;
|
|
@@ -11551,6 +11695,7 @@ declare const VBtnToggle: {
|
|
|
11551
11695
|
disabled: boolean;
|
|
11552
11696
|
multiple: boolean;
|
|
11553
11697
|
tag: string;
|
|
11698
|
+
tile: boolean;
|
|
11554
11699
|
density: Density;
|
|
11555
11700
|
divided: boolean;
|
|
11556
11701
|
} & {
|
|
@@ -11575,6 +11720,7 @@ declare const VBtnToggle: {
|
|
|
11575
11720
|
disabled: boolean;
|
|
11576
11721
|
multiple: boolean;
|
|
11577
11722
|
tag: string;
|
|
11723
|
+
tile: boolean;
|
|
11578
11724
|
density: Density;
|
|
11579
11725
|
divided: boolean;
|
|
11580
11726
|
} & {
|
|
@@ -11594,6 +11740,7 @@ declare const VBtnToggle: {
|
|
|
11594
11740
|
multiple: boolean;
|
|
11595
11741
|
tag: string;
|
|
11596
11742
|
rounded: string | number | boolean;
|
|
11743
|
+
tile: boolean;
|
|
11597
11744
|
density: Density;
|
|
11598
11745
|
divided: boolean;
|
|
11599
11746
|
}, true, {}, vue.SlotsType<Partial<{
|
|
@@ -11613,6 +11760,7 @@ declare const VBtnToggle: {
|
|
|
11613
11760
|
disabled: boolean;
|
|
11614
11761
|
multiple: boolean;
|
|
11615
11762
|
tag: string;
|
|
11763
|
+
tile: boolean;
|
|
11616
11764
|
density: Density;
|
|
11617
11765
|
divided: boolean;
|
|
11618
11766
|
} & {
|
|
@@ -11636,6 +11784,7 @@ declare const VBtnToggle: {
|
|
|
11636
11784
|
multiple: boolean;
|
|
11637
11785
|
tag: string;
|
|
11638
11786
|
rounded: string | number | boolean;
|
|
11787
|
+
tile: boolean;
|
|
11639
11788
|
density: Density;
|
|
11640
11789
|
divided: boolean;
|
|
11641
11790
|
}>;
|
|
@@ -11648,6 +11797,7 @@ declare const VBtnToggle: {
|
|
|
11648
11797
|
disabled: boolean;
|
|
11649
11798
|
multiple: boolean;
|
|
11650
11799
|
tag: string;
|
|
11800
|
+
tile: boolean;
|
|
11651
11801
|
density: Density;
|
|
11652
11802
|
divided: boolean;
|
|
11653
11803
|
} & {
|
|
@@ -11673,6 +11823,7 @@ declare const VBtnToggle: {
|
|
|
11673
11823
|
multiple: boolean;
|
|
11674
11824
|
tag: string;
|
|
11675
11825
|
rounded: string | number | boolean;
|
|
11826
|
+
tile: boolean;
|
|
11676
11827
|
density: Density;
|
|
11677
11828
|
divided: boolean;
|
|
11678
11829
|
}, {}, string, vue.SlotsType<Partial<{
|
|
@@ -11710,6 +11861,7 @@ declare const VBtnToggle: {
|
|
|
11710
11861
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
11711
11862
|
default: undefined;
|
|
11712
11863
|
};
|
|
11864
|
+
tile: BooleanConstructor;
|
|
11713
11865
|
elevation: {
|
|
11714
11866
|
type: (StringConstructor | NumberConstructor)[];
|
|
11715
11867
|
validator(v: any): boolean;
|
|
@@ -11751,6 +11903,7 @@ declare const VBtnToggle: {
|
|
|
11751
11903
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
11752
11904
|
default: undefined;
|
|
11753
11905
|
};
|
|
11906
|
+
tile: BooleanConstructor;
|
|
11754
11907
|
elevation: {
|
|
11755
11908
|
type: (StringConstructor | NumberConstructor)[];
|
|
11756
11909
|
validator(v: any): boolean;
|
|
@@ -11997,6 +12150,7 @@ declare const VCard: {
|
|
|
11997
12150
|
style: vue.StyleValue;
|
|
11998
12151
|
disabled: boolean;
|
|
11999
12152
|
tag: string;
|
|
12153
|
+
tile: boolean;
|
|
12000
12154
|
density: Density;
|
|
12001
12155
|
ripple: boolean | {
|
|
12002
12156
|
class: string;
|
|
@@ -12073,6 +12227,7 @@ declare const VCard: {
|
|
|
12073
12227
|
style: vue.StyleValue;
|
|
12074
12228
|
disabled: boolean;
|
|
12075
12229
|
tag: string;
|
|
12230
|
+
tile: boolean;
|
|
12076
12231
|
density: Density;
|
|
12077
12232
|
ripple: boolean | {
|
|
12078
12233
|
class: string;
|
|
@@ -12151,6 +12306,7 @@ declare const VCard: {
|
|
|
12151
12306
|
disabled: boolean;
|
|
12152
12307
|
tag: string;
|
|
12153
12308
|
rounded: string | number | boolean;
|
|
12309
|
+
tile: boolean;
|
|
12154
12310
|
density: Density;
|
|
12155
12311
|
ripple: boolean | {
|
|
12156
12312
|
class: string;
|
|
@@ -12202,6 +12358,7 @@ declare const VCard: {
|
|
|
12202
12358
|
style: vue.StyleValue;
|
|
12203
12359
|
disabled: boolean;
|
|
12204
12360
|
tag: string;
|
|
12361
|
+
tile: boolean;
|
|
12205
12362
|
density: Density;
|
|
12206
12363
|
ripple: boolean | {
|
|
12207
12364
|
class: string;
|
|
@@ -12280,6 +12437,7 @@ declare const VCard: {
|
|
|
12280
12437
|
disabled: boolean;
|
|
12281
12438
|
tag: string;
|
|
12282
12439
|
rounded: string | number | boolean;
|
|
12440
|
+
tile: boolean;
|
|
12283
12441
|
density: Density;
|
|
12284
12442
|
ripple: boolean | {
|
|
12285
12443
|
class: string;
|
|
@@ -12297,6 +12455,7 @@ declare const VCard: {
|
|
|
12297
12455
|
style: vue.StyleValue;
|
|
12298
12456
|
disabled: boolean;
|
|
12299
12457
|
tag: string;
|
|
12458
|
+
tile: boolean;
|
|
12300
12459
|
density: Density;
|
|
12301
12460
|
ripple: boolean | {
|
|
12302
12461
|
class: string;
|
|
@@ -12375,6 +12534,7 @@ declare const VCard: {
|
|
|
12375
12534
|
disabled: boolean;
|
|
12376
12535
|
tag: string;
|
|
12377
12536
|
rounded: string | number | boolean;
|
|
12537
|
+
tile: boolean;
|
|
12378
12538
|
density: Density;
|
|
12379
12539
|
ripple: boolean | {
|
|
12380
12540
|
class: string;
|
|
@@ -12434,6 +12594,7 @@ declare const VCard: {
|
|
|
12434
12594
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
12435
12595
|
default: undefined;
|
|
12436
12596
|
};
|
|
12597
|
+
tile: BooleanConstructor;
|
|
12437
12598
|
position: {
|
|
12438
12599
|
type: PropType<"fixed" | "absolute" | "static" | "sticky" | "relative">;
|
|
12439
12600
|
validator: (v: any) => boolean;
|
|
@@ -12505,6 +12666,7 @@ declare const VCard: {
|
|
|
12505
12666
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
12506
12667
|
default: undefined;
|
|
12507
12668
|
};
|
|
12669
|
+
tile: BooleanConstructor;
|
|
12508
12670
|
position: {
|
|
12509
12671
|
type: PropType<"fixed" | "absolute" | "static" | "sticky" | "relative">;
|
|
12510
12672
|
validator: (v: any) => boolean;
|
|
@@ -13729,6 +13891,7 @@ declare const VImg: {
|
|
|
13729
13891
|
options: IntersectionObserverInit;
|
|
13730
13892
|
cover: boolean;
|
|
13731
13893
|
src: string | srcObject;
|
|
13894
|
+
tile: boolean;
|
|
13732
13895
|
} & {
|
|
13733
13896
|
height?: string | number | undefined;
|
|
13734
13897
|
width?: string | number | undefined;
|
|
@@ -13792,6 +13955,7 @@ declare const VImg: {
|
|
|
13792
13955
|
options: IntersectionObserverInit;
|
|
13793
13956
|
cover: boolean;
|
|
13794
13957
|
src: string | srcObject;
|
|
13958
|
+
tile: boolean;
|
|
13795
13959
|
} & {
|
|
13796
13960
|
height?: string | number | undefined;
|
|
13797
13961
|
width?: string | number | undefined;
|
|
@@ -13847,6 +14011,7 @@ declare const VImg: {
|
|
|
13847
14011
|
cover: boolean;
|
|
13848
14012
|
src: string | srcObject;
|
|
13849
14013
|
rounded: string | number | boolean;
|
|
14014
|
+
tile: boolean;
|
|
13850
14015
|
}, true, {}, vue.SlotsType<Partial<{
|
|
13851
14016
|
default: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
13852
14017
|
[key: string]: any;
|
|
@@ -13877,6 +14042,7 @@ declare const VImg: {
|
|
|
13877
14042
|
options: IntersectionObserverInit;
|
|
13878
14043
|
cover: boolean;
|
|
13879
14044
|
src: string | srcObject;
|
|
14045
|
+
tile: boolean;
|
|
13880
14046
|
} & {
|
|
13881
14047
|
height?: string | number | undefined;
|
|
13882
14048
|
width?: string | number | undefined;
|
|
@@ -13938,6 +14104,7 @@ declare const VImg: {
|
|
|
13938
14104
|
cover: boolean;
|
|
13939
14105
|
src: string | srcObject;
|
|
13940
14106
|
rounded: string | number | boolean;
|
|
14107
|
+
tile: boolean;
|
|
13941
14108
|
}>;
|
|
13942
14109
|
__isFragment?: undefined;
|
|
13943
14110
|
__isTeleport?: undefined;
|
|
@@ -13952,6 +14119,7 @@ declare const VImg: {
|
|
|
13952
14119
|
options: IntersectionObserverInit;
|
|
13953
14120
|
cover: boolean;
|
|
13954
14121
|
src: string | srcObject;
|
|
14122
|
+
tile: boolean;
|
|
13955
14123
|
} & {
|
|
13956
14124
|
height?: string | number | undefined;
|
|
13957
14125
|
width?: string | number | undefined;
|
|
@@ -14017,6 +14185,7 @@ declare const VImg: {
|
|
|
14017
14185
|
cover: boolean;
|
|
14018
14186
|
src: string | srcObject;
|
|
14019
14187
|
rounded: string | number | boolean;
|
|
14188
|
+
tile: boolean;
|
|
14020
14189
|
}, {}, string, vue.SlotsType<Partial<{
|
|
14021
14190
|
default: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
14022
14191
|
[key: string]: any;
|
|
@@ -14042,6 +14211,7 @@ declare const VImg: {
|
|
|
14042
14211
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
14043
14212
|
default: undefined;
|
|
14044
14213
|
};
|
|
14214
|
+
tile: BooleanConstructor;
|
|
14045
14215
|
class: PropType<any>;
|
|
14046
14216
|
style: {
|
|
14047
14217
|
type: PropType<vue.StyleValue>;
|
|
@@ -14095,6 +14265,7 @@ declare const VImg: {
|
|
|
14095
14265
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
14096
14266
|
default: undefined;
|
|
14097
14267
|
};
|
|
14268
|
+
tile: BooleanConstructor;
|
|
14098
14269
|
class: PropType<any>;
|
|
14099
14270
|
style: {
|
|
14100
14271
|
type: PropType<vue.StyleValue>;
|
|
@@ -14148,6 +14319,7 @@ declare const VCarouselItem: {
|
|
|
14148
14319
|
options: IntersectionObserverInit;
|
|
14149
14320
|
cover: boolean;
|
|
14150
14321
|
src: string | srcObject;
|
|
14322
|
+
tile: boolean;
|
|
14151
14323
|
} & {
|
|
14152
14324
|
height?: string | number | undefined;
|
|
14153
14325
|
width?: string | number | undefined;
|
|
@@ -14199,6 +14371,7 @@ declare const VCarouselItem: {
|
|
|
14199
14371
|
options: IntersectionObserverInit;
|
|
14200
14372
|
cover: boolean;
|
|
14201
14373
|
src: string | srcObject;
|
|
14374
|
+
tile: boolean;
|
|
14202
14375
|
} & {
|
|
14203
14376
|
height?: string | number | undefined;
|
|
14204
14377
|
width?: string | number | undefined;
|
|
@@ -14253,6 +14426,7 @@ declare const VCarouselItem: {
|
|
|
14253
14426
|
cover: boolean;
|
|
14254
14427
|
src: string | srcObject;
|
|
14255
14428
|
rounded: string | number | boolean;
|
|
14429
|
+
tile: boolean;
|
|
14256
14430
|
reverseTransition: string | boolean;
|
|
14257
14431
|
}, true, {}, vue.SlotsType<Partial<{
|
|
14258
14432
|
default: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
@@ -14282,6 +14456,7 @@ declare const VCarouselItem: {
|
|
|
14282
14456
|
options: IntersectionObserverInit;
|
|
14283
14457
|
cover: boolean;
|
|
14284
14458
|
src: string | srcObject;
|
|
14459
|
+
tile: boolean;
|
|
14285
14460
|
} & {
|
|
14286
14461
|
height?: string | number | undefined;
|
|
14287
14462
|
width?: string | number | undefined;
|
|
@@ -14336,6 +14511,7 @@ declare const VCarouselItem: {
|
|
|
14336
14511
|
cover: boolean;
|
|
14337
14512
|
src: string | srcObject;
|
|
14338
14513
|
rounded: string | number | boolean;
|
|
14514
|
+
tile: boolean;
|
|
14339
14515
|
reverseTransition: string | boolean;
|
|
14340
14516
|
}>;
|
|
14341
14517
|
__isFragment?: undefined;
|
|
@@ -14349,6 +14525,7 @@ declare const VCarouselItem: {
|
|
|
14349
14525
|
options: IntersectionObserverInit;
|
|
14350
14526
|
cover: boolean;
|
|
14351
14527
|
src: string | srcObject;
|
|
14528
|
+
tile: boolean;
|
|
14352
14529
|
} & {
|
|
14353
14530
|
height?: string | number | undefined;
|
|
14354
14531
|
width?: string | number | undefined;
|
|
@@ -14403,6 +14580,7 @@ declare const VCarouselItem: {
|
|
|
14403
14580
|
cover: boolean;
|
|
14404
14581
|
src: string | srcObject;
|
|
14405
14582
|
rounded: string | number | boolean;
|
|
14583
|
+
tile: boolean;
|
|
14406
14584
|
reverseTransition: string | boolean;
|
|
14407
14585
|
}, {}, string, vue.SlotsType<Partial<{
|
|
14408
14586
|
default: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
@@ -14439,6 +14617,7 @@ declare const VCarouselItem: {
|
|
|
14439
14617
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
14440
14618
|
default: undefined;
|
|
14441
14619
|
};
|
|
14620
|
+
tile: BooleanConstructor;
|
|
14442
14621
|
height: (StringConstructor | NumberConstructor)[];
|
|
14443
14622
|
maxHeight: (StringConstructor | NumberConstructor)[];
|
|
14444
14623
|
maxWidth: (StringConstructor | NumberConstructor)[];
|
|
@@ -14496,6 +14675,7 @@ declare const VCarouselItem: {
|
|
|
14496
14675
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
14497
14676
|
default: undefined;
|
|
14498
14677
|
};
|
|
14678
|
+
tile: BooleanConstructor;
|
|
14499
14679
|
height: (StringConstructor | NumberConstructor)[];
|
|
14500
14680
|
maxHeight: (StringConstructor | NumberConstructor)[];
|
|
14501
14681
|
maxWidth: (StringConstructor | NumberConstructor)[];
|
|
@@ -15956,6 +16136,7 @@ declare const VChip: {
|
|
|
15956
16136
|
disabled: boolean;
|
|
15957
16137
|
size: string | number;
|
|
15958
16138
|
tag: string;
|
|
16139
|
+
tile: boolean;
|
|
15959
16140
|
density: Density;
|
|
15960
16141
|
modelValue: boolean;
|
|
15961
16142
|
ripple: boolean | {
|
|
@@ -16063,6 +16244,7 @@ declare const VChip: {
|
|
|
16063
16244
|
disabled: boolean;
|
|
16064
16245
|
size: string | number;
|
|
16065
16246
|
tag: string;
|
|
16247
|
+
tile: boolean;
|
|
16066
16248
|
density: Density;
|
|
16067
16249
|
modelValue: boolean;
|
|
16068
16250
|
ripple: boolean | {
|
|
@@ -16165,6 +16347,7 @@ declare const VChip: {
|
|
|
16165
16347
|
size: string | number;
|
|
16166
16348
|
tag: string;
|
|
16167
16349
|
rounded: string | number | boolean;
|
|
16350
|
+
tile: boolean;
|
|
16168
16351
|
density: Density;
|
|
16169
16352
|
modelValue: boolean;
|
|
16170
16353
|
ripple: boolean | {
|
|
@@ -16219,6 +16402,7 @@ declare const VChip: {
|
|
|
16219
16402
|
disabled: boolean;
|
|
16220
16403
|
size: string | number;
|
|
16221
16404
|
tag: string;
|
|
16405
|
+
tile: boolean;
|
|
16222
16406
|
density: Density;
|
|
16223
16407
|
modelValue: boolean;
|
|
16224
16408
|
ripple: boolean | {
|
|
@@ -16321,6 +16505,7 @@ declare const VChip: {
|
|
|
16321
16505
|
size: string | number;
|
|
16322
16506
|
tag: string;
|
|
16323
16507
|
rounded: string | number | boolean;
|
|
16508
|
+
tile: boolean;
|
|
16324
16509
|
density: Density;
|
|
16325
16510
|
modelValue: boolean;
|
|
16326
16511
|
ripple: boolean | {
|
|
@@ -16346,6 +16531,7 @@ declare const VChip: {
|
|
|
16346
16531
|
disabled: boolean;
|
|
16347
16532
|
size: string | number;
|
|
16348
16533
|
tag: string;
|
|
16534
|
+
tile: boolean;
|
|
16349
16535
|
density: Density;
|
|
16350
16536
|
modelValue: boolean;
|
|
16351
16537
|
ripple: boolean | {
|
|
@@ -16455,6 +16641,7 @@ declare const VChip: {
|
|
|
16455
16641
|
size: string | number;
|
|
16456
16642
|
tag: string;
|
|
16457
16643
|
rounded: string | number | boolean;
|
|
16644
|
+
tile: boolean;
|
|
16458
16645
|
density: Density;
|
|
16459
16646
|
modelValue: boolean;
|
|
16460
16647
|
ripple: boolean | {
|
|
@@ -16521,6 +16708,7 @@ declare const VChip: {
|
|
|
16521
16708
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
16522
16709
|
default: undefined;
|
|
16523
16710
|
};
|
|
16711
|
+
tile: BooleanConstructor;
|
|
16524
16712
|
value: null;
|
|
16525
16713
|
disabled: BooleanConstructor;
|
|
16526
16714
|
selectedClass: StringConstructor;
|
|
@@ -16608,6 +16796,7 @@ declare const VChip: {
|
|
|
16608
16796
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
16609
16797
|
default: undefined;
|
|
16610
16798
|
};
|
|
16799
|
+
tile: BooleanConstructor;
|
|
16611
16800
|
value: null;
|
|
16612
16801
|
disabled: BooleanConstructor;
|
|
16613
16802
|
selectedClass: StringConstructor;
|
|
@@ -17186,6 +17375,7 @@ declare const VColorPicker: {
|
|
|
17186
17375
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
17187
17376
|
default: undefined;
|
|
17188
17377
|
};
|
|
17378
|
+
tile: BooleanConstructor;
|
|
17189
17379
|
canvasHeight: {
|
|
17190
17380
|
type: (StringConstructor | NumberConstructor)[];
|
|
17191
17381
|
default: number;
|
|
@@ -17267,6 +17457,7 @@ declare const VColorPicker: {
|
|
|
17267
17457
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
17268
17458
|
default: undefined;
|
|
17269
17459
|
};
|
|
17460
|
+
tile: BooleanConstructor;
|
|
17270
17461
|
canvasHeight: {
|
|
17271
17462
|
type: (StringConstructor | NumberConstructor)[];
|
|
17272
17463
|
default: number;
|
|
@@ -17323,6 +17514,7 @@ declare const VColorPicker: {
|
|
|
17323
17514
|
tag: string;
|
|
17324
17515
|
mode: "rgb" | "rgba" | "hsl" | "hsla" | "hex" | "hexa";
|
|
17325
17516
|
rounded: string | number | boolean;
|
|
17517
|
+
tile: boolean;
|
|
17326
17518
|
dotSize: string | number;
|
|
17327
17519
|
modes: readonly ("rgb" | "rgba" | "hsl" | "hsla" | "hex" | "hexa")[];
|
|
17328
17520
|
canvasHeight: string | number;
|
|
@@ -17367,6 +17559,7 @@ declare const VColorPicker: {
|
|
|
17367
17559
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
17368
17560
|
default: undefined;
|
|
17369
17561
|
};
|
|
17562
|
+
tile: BooleanConstructor;
|
|
17370
17563
|
canvasHeight: {
|
|
17371
17564
|
type: (StringConstructor | NumberConstructor)[];
|
|
17372
17565
|
default: number;
|
|
@@ -17423,6 +17616,7 @@ declare const VColorPicker: {
|
|
|
17423
17616
|
tag: string;
|
|
17424
17617
|
mode: "rgb" | "rgba" | "hsl" | "hsla" | "hex" | "hexa";
|
|
17425
17618
|
rounded: string | number | boolean;
|
|
17619
|
+
tile: boolean;
|
|
17426
17620
|
dotSize: string | number;
|
|
17427
17621
|
modes: readonly ("rgb" | "rgba" | "hsl" | "hsla" | "hex" | "hexa")[];
|
|
17428
17622
|
canvasHeight: string | number;
|
|
@@ -17464,6 +17658,7 @@ declare const VColorPicker: {
|
|
|
17464
17658
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
17465
17659
|
default: undefined;
|
|
17466
17660
|
};
|
|
17661
|
+
tile: BooleanConstructor;
|
|
17467
17662
|
canvasHeight: {
|
|
17468
17663
|
type: (StringConstructor | NumberConstructor)[];
|
|
17469
17664
|
default: number;
|
|
@@ -17523,6 +17718,7 @@ declare const VColorPicker: {
|
|
|
17523
17718
|
tag: string;
|
|
17524
17719
|
mode: "rgb" | "rgba" | "hsl" | "hsla" | "hex" | "hexa";
|
|
17525
17720
|
rounded: string | number | boolean;
|
|
17721
|
+
tile: boolean;
|
|
17526
17722
|
dotSize: string | number;
|
|
17527
17723
|
modes: readonly ("rgb" | "rgba" | "hsl" | "hsla" | "hex" | "hexa")[];
|
|
17528
17724
|
canvasHeight: string | number;
|
|
@@ -17560,6 +17756,7 @@ declare const VColorPicker: {
|
|
|
17560
17756
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
17561
17757
|
default: undefined;
|
|
17562
17758
|
};
|
|
17759
|
+
tile: BooleanConstructor;
|
|
17563
17760
|
canvasHeight: {
|
|
17564
17761
|
type: (StringConstructor | NumberConstructor)[];
|
|
17565
17762
|
default: number;
|
|
@@ -17635,6 +17832,7 @@ declare const VColorPicker: {
|
|
|
17635
17832
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
17636
17833
|
default: undefined;
|
|
17637
17834
|
};
|
|
17835
|
+
tile: BooleanConstructor;
|
|
17638
17836
|
canvasHeight: {
|
|
17639
17837
|
type: (StringConstructor | NumberConstructor)[];
|
|
17640
17838
|
default: number;
|
|
@@ -17709,6 +17907,7 @@ declare const VCombobox: {
|
|
|
17709
17907
|
readonly: boolean | null;
|
|
17710
17908
|
noDataText: string;
|
|
17711
17909
|
messages: string | readonly string[];
|
|
17910
|
+
tile: boolean;
|
|
17712
17911
|
density: Density;
|
|
17713
17912
|
valueComparator: typeof deepEqual;
|
|
17714
17913
|
clearIcon: IconValue;
|
|
@@ -17777,6 +17976,7 @@ declare const VCombobox: {
|
|
|
17777
17976
|
tag: string;
|
|
17778
17977
|
mandatory: boolean;
|
|
17779
17978
|
rounded: string | number | boolean;
|
|
17979
|
+
tile: boolean;
|
|
17780
17980
|
density: Density;
|
|
17781
17981
|
slim: boolean;
|
|
17782
17982
|
valueComparator: typeof deepEqual;
|
|
@@ -17792,6 +17992,7 @@ declare const VCombobox: {
|
|
|
17792
17992
|
disabled: boolean;
|
|
17793
17993
|
tag: string;
|
|
17794
17994
|
mandatory: boolean;
|
|
17995
|
+
tile: boolean;
|
|
17795
17996
|
density: Density;
|
|
17796
17997
|
slim: boolean;
|
|
17797
17998
|
valueComparator: typeof deepEqual;
|
|
@@ -17835,6 +18036,7 @@ declare const VCombobox: {
|
|
|
17835
18036
|
disabled: boolean;
|
|
17836
18037
|
tag: string;
|
|
17837
18038
|
mandatory: boolean;
|
|
18039
|
+
tile: boolean;
|
|
17838
18040
|
density: Density;
|
|
17839
18041
|
slim: boolean;
|
|
17840
18042
|
valueComparator: typeof deepEqual;
|
|
@@ -17873,7 +18075,7 @@ declare const VCombobox: {
|
|
|
17873
18075
|
value: boolean;
|
|
17874
18076
|
path: unknown[];
|
|
17875
18077
|
}) => any) | undefined;
|
|
17876
|
-
}, "variant" | "nav" | "style" | "disabled" | "tag" | "mandatory" | "rounded" | "density" | "slim" | "valueComparator" | "selectStrategy" | "openStrategy" | "lines" | "returnObject" | "itemType"> & {
|
|
18078
|
+
}, "variant" | "nav" | "style" | "disabled" | "tag" | "mandatory" | "rounded" | "tile" | "density" | "slim" | "valueComparator" | "selectStrategy" | "openStrategy" | "lines" | "returnObject" | "itemType"> & {
|
|
17877
18079
|
items?: readonly any[] | undefined;
|
|
17878
18080
|
itemTitle?: SelectItemKey<any>;
|
|
17879
18081
|
itemValue?: SelectItemKey<any>;
|
|
@@ -18254,6 +18456,7 @@ declare const VCombobox: {
|
|
|
18254
18456
|
readonly: boolean | null;
|
|
18255
18457
|
noDataText: string;
|
|
18256
18458
|
messages: string | readonly string[];
|
|
18459
|
+
tile: boolean;
|
|
18257
18460
|
density: Density;
|
|
18258
18461
|
valueComparator: typeof deepEqual;
|
|
18259
18462
|
clearIcon: IconValue;
|
|
@@ -18322,6 +18525,7 @@ declare const VCombobox: {
|
|
|
18322
18525
|
tag: string;
|
|
18323
18526
|
mandatory: boolean;
|
|
18324
18527
|
rounded: string | number | boolean;
|
|
18528
|
+
tile: boolean;
|
|
18325
18529
|
density: Density;
|
|
18326
18530
|
slim: boolean;
|
|
18327
18531
|
valueComparator: typeof deepEqual;
|
|
@@ -18337,6 +18541,7 @@ declare const VCombobox: {
|
|
|
18337
18541
|
disabled: boolean;
|
|
18338
18542
|
tag: string;
|
|
18339
18543
|
mandatory: boolean;
|
|
18544
|
+
tile: boolean;
|
|
18340
18545
|
density: Density;
|
|
18341
18546
|
slim: boolean;
|
|
18342
18547
|
valueComparator: typeof deepEqual;
|
|
@@ -18380,6 +18585,7 @@ declare const VCombobox: {
|
|
|
18380
18585
|
disabled: boolean;
|
|
18381
18586
|
tag: string;
|
|
18382
18587
|
mandatory: boolean;
|
|
18588
|
+
tile: boolean;
|
|
18383
18589
|
density: Density;
|
|
18384
18590
|
slim: boolean;
|
|
18385
18591
|
valueComparator: typeof deepEqual;
|
|
@@ -18418,7 +18624,7 @@ declare const VCombobox: {
|
|
|
18418
18624
|
value: boolean;
|
|
18419
18625
|
path: unknown[];
|
|
18420
18626
|
}) => any) | undefined;
|
|
18421
|
-
}, "variant" | "nav" | "style" | "disabled" | "tag" | "mandatory" | "rounded" | "density" | "slim" | "valueComparator" | "selectStrategy" | "openStrategy" | "lines" | "returnObject" | "itemType"> & {
|
|
18627
|
+
}, "variant" | "nav" | "style" | "disabled" | "tag" | "mandatory" | "rounded" | "tile" | "density" | "slim" | "valueComparator" | "selectStrategy" | "openStrategy" | "lines" | "returnObject" | "itemType"> & {
|
|
18422
18628
|
items?: readonly any[] | undefined;
|
|
18423
18629
|
itemTitle?: SelectItemKey<any>;
|
|
18424
18630
|
itemValue?: SelectItemKey<any>;
|
|
@@ -18795,6 +19001,7 @@ declare const VCombobox: {
|
|
|
18795
19001
|
noDataText: string;
|
|
18796
19002
|
messages: string | readonly string[];
|
|
18797
19003
|
rounded: string | number | boolean;
|
|
19004
|
+
tile: boolean;
|
|
18798
19005
|
density: Density;
|
|
18799
19006
|
valueComparator: typeof deepEqual;
|
|
18800
19007
|
clearIcon: IconValue;
|
|
@@ -18910,6 +19117,7 @@ declare const VCombobox: {
|
|
|
18910
19117
|
readonly: boolean | null;
|
|
18911
19118
|
noDataText: string;
|
|
18912
19119
|
messages: string | readonly string[];
|
|
19120
|
+
tile: boolean;
|
|
18913
19121
|
density: Density;
|
|
18914
19122
|
valueComparator: typeof deepEqual;
|
|
18915
19123
|
clearIcon: IconValue;
|
|
@@ -18978,6 +19186,7 @@ declare const VCombobox: {
|
|
|
18978
19186
|
tag: string;
|
|
18979
19187
|
mandatory: boolean;
|
|
18980
19188
|
rounded: string | number | boolean;
|
|
19189
|
+
tile: boolean;
|
|
18981
19190
|
density: Density;
|
|
18982
19191
|
slim: boolean;
|
|
18983
19192
|
valueComparator: typeof deepEqual;
|
|
@@ -18993,6 +19202,7 @@ declare const VCombobox: {
|
|
|
18993
19202
|
disabled: boolean;
|
|
18994
19203
|
tag: string;
|
|
18995
19204
|
mandatory: boolean;
|
|
19205
|
+
tile: boolean;
|
|
18996
19206
|
density: Density;
|
|
18997
19207
|
slim: boolean;
|
|
18998
19208
|
valueComparator: typeof deepEqual;
|
|
@@ -19036,6 +19246,7 @@ declare const VCombobox: {
|
|
|
19036
19246
|
disabled: boolean;
|
|
19037
19247
|
tag: string;
|
|
19038
19248
|
mandatory: boolean;
|
|
19249
|
+
tile: boolean;
|
|
19039
19250
|
density: Density;
|
|
19040
19251
|
slim: boolean;
|
|
19041
19252
|
valueComparator: typeof deepEqual;
|
|
@@ -19074,7 +19285,7 @@ declare const VCombobox: {
|
|
|
19074
19285
|
value: boolean;
|
|
19075
19286
|
path: unknown[];
|
|
19076
19287
|
}) => any) | undefined;
|
|
19077
|
-
}, "variant" | "nav" | "style" | "disabled" | "tag" | "mandatory" | "rounded" | "density" | "slim" | "valueComparator" | "selectStrategy" | "openStrategy" | "lines" | "returnObject" | "itemType"> & {
|
|
19288
|
+
}, "variant" | "nav" | "style" | "disabled" | "tag" | "mandatory" | "rounded" | "tile" | "density" | "slim" | "valueComparator" | "selectStrategy" | "openStrategy" | "lines" | "returnObject" | "itemType"> & {
|
|
19078
19289
|
items?: readonly any[] | undefined;
|
|
19079
19290
|
itemTitle?: SelectItemKey<any>;
|
|
19080
19291
|
itemValue?: SelectItemKey<any>;
|
|
@@ -19451,6 +19662,7 @@ declare const VCombobox: {
|
|
|
19451
19662
|
noDataText: string;
|
|
19452
19663
|
messages: string | readonly string[];
|
|
19453
19664
|
rounded: string | number | boolean;
|
|
19665
|
+
tile: boolean;
|
|
19454
19666
|
density: Density;
|
|
19455
19667
|
valueComparator: typeof deepEqual;
|
|
19456
19668
|
clearIcon: IconValue;
|
|
@@ -19503,6 +19715,7 @@ declare const VCombobox: {
|
|
|
19503
19715
|
readonly: boolean | null;
|
|
19504
19716
|
noDataText: string;
|
|
19505
19717
|
messages: string | readonly string[];
|
|
19718
|
+
tile: boolean;
|
|
19506
19719
|
density: Density;
|
|
19507
19720
|
valueComparator: typeof deepEqual;
|
|
19508
19721
|
clearIcon: IconValue;
|
|
@@ -19571,6 +19784,7 @@ declare const VCombobox: {
|
|
|
19571
19784
|
tag: string;
|
|
19572
19785
|
mandatory: boolean;
|
|
19573
19786
|
rounded: string | number | boolean;
|
|
19787
|
+
tile: boolean;
|
|
19574
19788
|
density: Density;
|
|
19575
19789
|
slim: boolean;
|
|
19576
19790
|
valueComparator: typeof deepEqual;
|
|
@@ -19586,6 +19800,7 @@ declare const VCombobox: {
|
|
|
19586
19800
|
disabled: boolean;
|
|
19587
19801
|
tag: string;
|
|
19588
19802
|
mandatory: boolean;
|
|
19803
|
+
tile: boolean;
|
|
19589
19804
|
density: Density;
|
|
19590
19805
|
slim: boolean;
|
|
19591
19806
|
valueComparator: typeof deepEqual;
|
|
@@ -19629,6 +19844,7 @@ declare const VCombobox: {
|
|
|
19629
19844
|
disabled: boolean;
|
|
19630
19845
|
tag: string;
|
|
19631
19846
|
mandatory: boolean;
|
|
19847
|
+
tile: boolean;
|
|
19632
19848
|
density: Density;
|
|
19633
19849
|
slim: boolean;
|
|
19634
19850
|
valueComparator: typeof deepEqual;
|
|
@@ -19667,7 +19883,7 @@ declare const VCombobox: {
|
|
|
19667
19883
|
value: boolean;
|
|
19668
19884
|
path: unknown[];
|
|
19669
19885
|
}) => any) | undefined;
|
|
19670
|
-
}, "variant" | "nav" | "style" | "disabled" | "tag" | "mandatory" | "rounded" | "density" | "slim" | "valueComparator" | "selectStrategy" | "openStrategy" | "lines" | "returnObject" | "itemType"> & {
|
|
19886
|
+
}, "variant" | "nav" | "style" | "disabled" | "tag" | "mandatory" | "rounded" | "tile" | "density" | "slim" | "valueComparator" | "selectStrategy" | "openStrategy" | "lines" | "returnObject" | "itemType"> & {
|
|
19671
19887
|
items?: readonly any[] | undefined;
|
|
19672
19888
|
itemTitle?: SelectItemKey<any>;
|
|
19673
19889
|
itemValue?: SelectItemKey<any>;
|
|
@@ -20049,6 +20265,7 @@ declare const VCombobox: {
|
|
|
20049
20265
|
noDataText: string;
|
|
20050
20266
|
messages: string | readonly string[];
|
|
20051
20267
|
rounded: string | number | boolean;
|
|
20268
|
+
tile: boolean;
|
|
20052
20269
|
density: Density;
|
|
20053
20270
|
valueComparator: typeof deepEqual;
|
|
20054
20271
|
clearIcon: IconValue;
|
|
@@ -20259,6 +20476,7 @@ declare const VCombobox: {
|
|
|
20259
20476
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
20260
20477
|
default: undefined;
|
|
20261
20478
|
};
|
|
20479
|
+
tile: BooleanConstructor;
|
|
20262
20480
|
density: {
|
|
20263
20481
|
type: PropType<Density>;
|
|
20264
20482
|
default: string;
|
|
@@ -20369,6 +20587,7 @@ declare const VCombobox: {
|
|
|
20369
20587
|
tag: string;
|
|
20370
20588
|
mandatory: boolean;
|
|
20371
20589
|
rounded: string | number | boolean;
|
|
20590
|
+
tile: boolean;
|
|
20372
20591
|
density: Density;
|
|
20373
20592
|
slim: boolean;
|
|
20374
20593
|
valueComparator: typeof deepEqual;
|
|
@@ -20384,6 +20603,7 @@ declare const VCombobox: {
|
|
|
20384
20603
|
disabled: boolean;
|
|
20385
20604
|
tag: string;
|
|
20386
20605
|
mandatory: boolean;
|
|
20606
|
+
tile: boolean;
|
|
20387
20607
|
density: Density;
|
|
20388
20608
|
slim: boolean;
|
|
20389
20609
|
valueComparator: typeof deepEqual;
|
|
@@ -20427,6 +20647,7 @@ declare const VCombobox: {
|
|
|
20427
20647
|
disabled: boolean;
|
|
20428
20648
|
tag: string;
|
|
20429
20649
|
mandatory: boolean;
|
|
20650
|
+
tile: boolean;
|
|
20430
20651
|
density: Density;
|
|
20431
20652
|
slim: boolean;
|
|
20432
20653
|
valueComparator: typeof deepEqual;
|
|
@@ -20465,7 +20686,7 @@ declare const VCombobox: {
|
|
|
20465
20686
|
value: boolean;
|
|
20466
20687
|
path: unknown[];
|
|
20467
20688
|
}) => any) | undefined;
|
|
20468
|
-
}, "variant" | "nav" | "style" | "disabled" | "tag" | "mandatory" | "rounded" | "density" | "slim" | "valueComparator" | "selectStrategy" | "openStrategy" | "lines" | "returnObject" | "itemType"> & {
|
|
20689
|
+
}, "variant" | "nav" | "style" | "disabled" | "tag" | "mandatory" | "rounded" | "tile" | "density" | "slim" | "valueComparator" | "selectStrategy" | "openStrategy" | "lines" | "returnObject" | "itemType"> & {
|
|
20469
20690
|
items?: readonly any[] | undefined;
|
|
20470
20691
|
itemTitle?: SelectItemKey<any>;
|
|
20471
20692
|
itemValue?: SelectItemKey<any>;
|
|
@@ -20917,6 +21138,7 @@ declare const VCombobox: {
|
|
|
20917
21138
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
20918
21139
|
default: undefined;
|
|
20919
21140
|
};
|
|
21141
|
+
tile: BooleanConstructor;
|
|
20920
21142
|
density: {
|
|
20921
21143
|
type: PropType<Density>;
|
|
20922
21144
|
default: string;
|
|
@@ -21027,6 +21249,7 @@ declare const VCombobox: {
|
|
|
21027
21249
|
tag: string;
|
|
21028
21250
|
mandatory: boolean;
|
|
21029
21251
|
rounded: string | number | boolean;
|
|
21252
|
+
tile: boolean;
|
|
21030
21253
|
density: Density;
|
|
21031
21254
|
slim: boolean;
|
|
21032
21255
|
valueComparator: typeof deepEqual;
|
|
@@ -21042,6 +21265,7 @@ declare const VCombobox: {
|
|
|
21042
21265
|
disabled: boolean;
|
|
21043
21266
|
tag: string;
|
|
21044
21267
|
mandatory: boolean;
|
|
21268
|
+
tile: boolean;
|
|
21045
21269
|
density: Density;
|
|
21046
21270
|
slim: boolean;
|
|
21047
21271
|
valueComparator: typeof deepEqual;
|
|
@@ -21085,6 +21309,7 @@ declare const VCombobox: {
|
|
|
21085
21309
|
disabled: boolean;
|
|
21086
21310
|
tag: string;
|
|
21087
21311
|
mandatory: boolean;
|
|
21312
|
+
tile: boolean;
|
|
21088
21313
|
density: Density;
|
|
21089
21314
|
slim: boolean;
|
|
21090
21315
|
valueComparator: typeof deepEqual;
|
|
@@ -21123,7 +21348,7 @@ declare const VCombobox: {
|
|
|
21123
21348
|
value: boolean;
|
|
21124
21349
|
path: unknown[];
|
|
21125
21350
|
}) => any) | undefined;
|
|
21126
|
-
}, "variant" | "nav" | "style" | "disabled" | "tag" | "mandatory" | "rounded" | "density" | "slim" | "valueComparator" | "selectStrategy" | "openStrategy" | "lines" | "returnObject" | "itemType"> & {
|
|
21351
|
+
}, "variant" | "nav" | "style" | "disabled" | "tag" | "mandatory" | "rounded" | "tile" | "density" | "slim" | "valueComparator" | "selectStrategy" | "openStrategy" | "lines" | "returnObject" | "itemType"> & {
|
|
21127
21352
|
items?: readonly any[] | undefined;
|
|
21128
21353
|
itemTitle?: SelectItemKey<any>;
|
|
21129
21354
|
itemValue?: SelectItemKey<any>;
|
|
@@ -21795,9 +22020,9 @@ declare function provideSelection(props: SelectionProps, { allItems, currentPage
|
|
|
21795
22020
|
};
|
|
21796
22021
|
|
|
21797
22022
|
type DataTableCompareFunction<T = any> = (a: T, b: T) => number;
|
|
21798
|
-
type DataTableHeader = {
|
|
22023
|
+
type DataTableHeader<T = Record<string, any>> = {
|
|
21799
22024
|
key?: 'data-table-group' | 'data-table-select' | 'data-table-expand' | (string & {});
|
|
21800
|
-
value?: SelectItemKey
|
|
22025
|
+
value?: SelectItemKey<T>;
|
|
21801
22026
|
title?: string;
|
|
21802
22027
|
fixed?: boolean;
|
|
21803
22028
|
align?: 'start' | 'end' | 'center';
|
|
@@ -21810,7 +22035,7 @@ type DataTableHeader = {
|
|
|
21810
22035
|
sort?: DataTableCompareFunction;
|
|
21811
22036
|
sortRaw?: DataTableCompareFunction;
|
|
21812
22037
|
filter?: FilterFunction;
|
|
21813
|
-
children?: DataTableHeader[];
|
|
22038
|
+
children?: DataTableHeader<T>[];
|
|
21814
22039
|
};
|
|
21815
22040
|
type InternalDataTableHeader = Omit<DataTableHeader, 'key' | 'value' | 'children'> & {
|
|
21816
22041
|
key: string | null;
|
|
@@ -22820,27 +23045,6 @@ declare const VDataTable: {
|
|
|
22820
23045
|
color?: string | undefined;
|
|
22821
23046
|
loading?: string | boolean | undefined;
|
|
22822
23047
|
class?: any;
|
|
22823
|
-
headers?: readonly {
|
|
22824
|
-
readonly key?: (string & {}) | "data-table-group" | "data-table-select" | "data-table-expand" | undefined;
|
|
22825
|
-
readonly value?: SelectItemKey;
|
|
22826
|
-
readonly title?: string | undefined;
|
|
22827
|
-
readonly fixed?: boolean | undefined;
|
|
22828
|
-
readonly align?: "center" | "end" | "start" | undefined;
|
|
22829
|
-
readonly width?: string | number | undefined;
|
|
22830
|
-
readonly minWidth?: string | undefined;
|
|
22831
|
-
readonly maxWidth?: string | undefined;
|
|
22832
|
-
readonly headerProps?: {
|
|
22833
|
-
readonly [x: string]: any;
|
|
22834
|
-
} | undefined;
|
|
22835
|
-
readonly cellProps?: ((data: Pick<ItemKeySlot<any>, "index" | "item" | "value" | "internalItem">) => Record<string, any>) | {
|
|
22836
|
-
readonly [x: string]: any;
|
|
22837
|
-
} | undefined;
|
|
22838
|
-
readonly sortable?: boolean | undefined;
|
|
22839
|
-
readonly sort?: DataTableCompareFunction<any> | undefined;
|
|
22840
|
-
readonly sortRaw?: DataTableCompareFunction<any> | undefined;
|
|
22841
|
-
readonly filter?: FilterFunction | undefined;
|
|
22842
|
-
readonly children?: readonly any[] | undefined;
|
|
22843
|
-
}[] | undefined;
|
|
22844
23048
|
theme?: string | undefined;
|
|
22845
23049
|
customFilter?: FilterFunction | undefined;
|
|
22846
23050
|
customKeyFilter?: FilterKeyFunctions | undefined;
|
|
@@ -22864,7 +23068,7 @@ declare const VDataTable: {
|
|
|
22864
23068
|
'update:groupBy': (value: any) => boolean;
|
|
22865
23069
|
'update:expanded': (value: any) => boolean;
|
|
22866
23070
|
'update:currentItems': (value: any) => boolean;
|
|
22867
|
-
}, "$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 & {
|
|
23071
|
+
}, "$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 & {
|
|
22868
23072
|
page: string | number;
|
|
22869
23073
|
style: vue.StyleValue;
|
|
22870
23074
|
expanded: readonly string[];
|
|
@@ -22914,27 +23118,6 @@ declare const VDataTable: {
|
|
|
22914
23118
|
color?: string | undefined;
|
|
22915
23119
|
loading?: string | boolean | undefined;
|
|
22916
23120
|
class?: any;
|
|
22917
|
-
headers?: readonly {
|
|
22918
|
-
readonly key?: (string & {}) | "data-table-group" | "data-table-select" | "data-table-expand" | undefined;
|
|
22919
|
-
readonly value?: SelectItemKey;
|
|
22920
|
-
readonly title?: string | undefined;
|
|
22921
|
-
readonly fixed?: boolean | undefined;
|
|
22922
|
-
readonly align?: "center" | "end" | "start" | undefined;
|
|
22923
|
-
readonly width?: string | number | undefined;
|
|
22924
|
-
readonly minWidth?: string | undefined;
|
|
22925
|
-
readonly maxWidth?: string | undefined;
|
|
22926
|
-
readonly headerProps?: {
|
|
22927
|
-
readonly [x: string]: any;
|
|
22928
|
-
} | undefined;
|
|
22929
|
-
readonly cellProps?: ((data: Pick<ItemKeySlot<any>, "index" | "item" | "value" | "internalItem">) => Record<string, any>) | {
|
|
22930
|
-
readonly [x: string]: any;
|
|
22931
|
-
} | undefined;
|
|
22932
|
-
readonly sortable?: boolean | undefined;
|
|
22933
|
-
readonly sort?: DataTableCompareFunction<any> | undefined;
|
|
22934
|
-
readonly sortRaw?: DataTableCompareFunction<any> | undefined;
|
|
22935
|
-
readonly filter?: FilterFunction | undefined;
|
|
22936
|
-
readonly children?: readonly any[] | undefined;
|
|
22937
|
-
}[] | undefined;
|
|
22938
23121
|
theme?: string | undefined;
|
|
22939
23122
|
customFilter?: FilterFunction | undefined;
|
|
22940
23123
|
customKeyFilter?: FilterKeyFunctions | undefined;
|
|
@@ -23173,27 +23356,6 @@ declare const VDataTable: {
|
|
|
23173
23356
|
color?: string | undefined;
|
|
23174
23357
|
loading?: string | boolean | undefined;
|
|
23175
23358
|
class?: any;
|
|
23176
|
-
headers?: readonly {
|
|
23177
|
-
readonly key?: (string & {}) | "data-table-group" | "data-table-select" | "data-table-expand" | undefined;
|
|
23178
|
-
readonly value?: SelectItemKey;
|
|
23179
|
-
readonly title?: string | undefined;
|
|
23180
|
-
readonly fixed?: boolean | undefined;
|
|
23181
|
-
readonly align?: "center" | "end" | "start" | undefined;
|
|
23182
|
-
readonly width?: string | number | undefined;
|
|
23183
|
-
readonly minWidth?: string | undefined;
|
|
23184
|
-
readonly maxWidth?: string | undefined;
|
|
23185
|
-
readonly headerProps?: {
|
|
23186
|
-
readonly [x: string]: any;
|
|
23187
|
-
} | undefined;
|
|
23188
|
-
readonly cellProps?: ((data: Pick<ItemKeySlot<any>, "index" | "item" | "value" | "internalItem">) => Record<string, any>) | {
|
|
23189
|
-
readonly [x: string]: any;
|
|
23190
|
-
} | undefined;
|
|
23191
|
-
readonly sortable?: boolean | undefined;
|
|
23192
|
-
readonly sort?: DataTableCompareFunction<any> | undefined;
|
|
23193
|
-
readonly sortRaw?: DataTableCompareFunction<any> | undefined;
|
|
23194
|
-
readonly filter?: FilterFunction | undefined;
|
|
23195
|
-
readonly children?: readonly any[] | undefined;
|
|
23196
|
-
}[] | undefined;
|
|
23197
23359
|
theme?: string | undefined;
|
|
23198
23360
|
customFilter?: FilterFunction | undefined;
|
|
23199
23361
|
customKeyFilter?: FilterKeyFunctions | undefined;
|
|
@@ -23305,27 +23467,6 @@ declare const VDataTable: {
|
|
|
23305
23467
|
color?: string | undefined;
|
|
23306
23468
|
loading?: string | boolean | undefined;
|
|
23307
23469
|
class?: any;
|
|
23308
|
-
headers?: readonly {
|
|
23309
|
-
readonly key?: (string & {}) | "data-table-group" | "data-table-select" | "data-table-expand" | undefined;
|
|
23310
|
-
readonly value?: SelectItemKey;
|
|
23311
|
-
readonly title?: string | undefined;
|
|
23312
|
-
readonly fixed?: boolean | undefined;
|
|
23313
|
-
readonly align?: "center" | "end" | "start" | undefined;
|
|
23314
|
-
readonly width?: string | number | undefined;
|
|
23315
|
-
readonly minWidth?: string | undefined;
|
|
23316
|
-
readonly maxWidth?: string | undefined;
|
|
23317
|
-
readonly headerProps?: {
|
|
23318
|
-
readonly [x: string]: any;
|
|
23319
|
-
} | undefined;
|
|
23320
|
-
readonly cellProps?: ((data: Pick<ItemKeySlot<any>, "index" | "item" | "value" | "internalItem">) => Record<string, any>) | {
|
|
23321
|
-
readonly [x: string]: any;
|
|
23322
|
-
} | undefined;
|
|
23323
|
-
readonly sortable?: boolean | undefined;
|
|
23324
|
-
readonly sort?: DataTableCompareFunction<any> | undefined;
|
|
23325
|
-
readonly sortRaw?: DataTableCompareFunction<any> | undefined;
|
|
23326
|
-
readonly filter?: FilterFunction | undefined;
|
|
23327
|
-
readonly children?: readonly any[] | undefined;
|
|
23328
|
-
}[] | undefined;
|
|
23329
23470
|
theme?: string | undefined;
|
|
23330
23471
|
customFilter?: FilterFunction | undefined;
|
|
23331
23472
|
customKeyFilter?: FilterKeyFunctions | undefined;
|
|
@@ -23349,7 +23490,7 @@ declare const VDataTable: {
|
|
|
23349
23490
|
'update:groupBy': (value: any) => boolean;
|
|
23350
23491
|
'update:expanded': (value: any) => boolean;
|
|
23351
23492
|
'update:currentItems': (value: any) => boolean;
|
|
23352
|
-
}, "$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, {
|
|
23493
|
+
}, "$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, {
|
|
23353
23494
|
page: string | number;
|
|
23354
23495
|
style: vue.StyleValue;
|
|
23355
23496
|
expanded: readonly string[];
|
|
@@ -23522,6 +23663,27 @@ declare const VDataTable: {
|
|
|
23522
23663
|
rowProps?: RowProps<ItemType$4<T>> | undefined;
|
|
23523
23664
|
cellProps?: CellProps<ItemType$4<T>> | undefined;
|
|
23524
23665
|
itemSelectable?: SelectItemKey<ItemType$4<T>>;
|
|
23666
|
+
headers?: readonly {
|
|
23667
|
+
readonly key?: (string & {}) | "data-table-group" | "data-table-select" | "data-table-expand" | undefined;
|
|
23668
|
+
readonly value?: SelectItemKey<ItemType$4<T>>;
|
|
23669
|
+
readonly title?: string | undefined;
|
|
23670
|
+
readonly fixed?: boolean | undefined;
|
|
23671
|
+
readonly align?: "center" | "end" | "start" | undefined;
|
|
23672
|
+
readonly width?: string | number | undefined;
|
|
23673
|
+
readonly minWidth?: string | undefined;
|
|
23674
|
+
readonly maxWidth?: string | undefined;
|
|
23675
|
+
readonly headerProps?: {
|
|
23676
|
+
readonly [x: string]: any;
|
|
23677
|
+
} | undefined;
|
|
23678
|
+
readonly cellProps?: ((data: Pick<ItemKeySlot<any>, "index" | "item" | "value" | "internalItem">) => Record<string, any>) | {
|
|
23679
|
+
readonly [x: string]: any;
|
|
23680
|
+
} | undefined;
|
|
23681
|
+
readonly sortable?: boolean | undefined;
|
|
23682
|
+
readonly sort?: DataTableCompareFunction<any> | undefined;
|
|
23683
|
+
readonly sortRaw?: DataTableCompareFunction<any> | undefined;
|
|
23684
|
+
readonly filter?: FilterFunction | undefined;
|
|
23685
|
+
readonly children?: readonly any[] | undefined;
|
|
23686
|
+
}[] | undefined;
|
|
23525
23687
|
modelValue?: V | undefined;
|
|
23526
23688
|
'onUpdate:modelValue'?: ((value: V) => void) | undefined;
|
|
23527
23689
|
}, slots: VDataTableSlots<ItemType$4<T>>) => GenericProps<{
|
|
@@ -23530,6 +23692,27 @@ declare const VDataTable: {
|
|
|
23530
23692
|
rowProps?: RowProps<ItemType$4<T>> | undefined;
|
|
23531
23693
|
cellProps?: CellProps<ItemType$4<T>> | undefined;
|
|
23532
23694
|
itemSelectable?: SelectItemKey<ItemType$4<T>>;
|
|
23695
|
+
headers?: readonly {
|
|
23696
|
+
readonly key?: (string & {}) | "data-table-group" | "data-table-select" | "data-table-expand" | undefined;
|
|
23697
|
+
readonly value?: SelectItemKey<ItemType$4<T>>;
|
|
23698
|
+
readonly title?: string | undefined;
|
|
23699
|
+
readonly fixed?: boolean | undefined;
|
|
23700
|
+
readonly align?: "center" | "end" | "start" | undefined;
|
|
23701
|
+
readonly width?: string | number | undefined;
|
|
23702
|
+
readonly minWidth?: string | undefined;
|
|
23703
|
+
readonly maxWidth?: string | undefined;
|
|
23704
|
+
readonly headerProps?: {
|
|
23705
|
+
readonly [x: string]: any;
|
|
23706
|
+
} | undefined;
|
|
23707
|
+
readonly cellProps?: ((data: Pick<ItemKeySlot<any>, "index" | "item" | "value" | "internalItem">) => Record<string, any>) | {
|
|
23708
|
+
readonly [x: string]: any;
|
|
23709
|
+
} | undefined;
|
|
23710
|
+
readonly sortable?: boolean | undefined;
|
|
23711
|
+
readonly sort?: DataTableCompareFunction<any> | undefined;
|
|
23712
|
+
readonly sortRaw?: DataTableCompareFunction<any> | undefined;
|
|
23713
|
+
readonly filter?: FilterFunction | undefined;
|
|
23714
|
+
readonly children?: readonly any[] | undefined;
|
|
23715
|
+
}[] | undefined;
|
|
23533
23716
|
modelValue?: V | undefined;
|
|
23534
23717
|
'onUpdate:modelValue'?: ((value: V) => void) | undefined;
|
|
23535
23718
|
}, VDataTableSlots<ItemType$4<T>>>) & FilterPropsOptions<{
|
|
@@ -23662,7 +23845,7 @@ declare const VDataTable: {
|
|
|
23662
23845
|
returnObject: BooleanConstructor;
|
|
23663
23846
|
headers: vue.PropType<readonly {
|
|
23664
23847
|
readonly key?: (string & {}) | "data-table-group" | "data-table-select" | "data-table-expand" | undefined;
|
|
23665
|
-
readonly value?: SelectItemKey
|
|
23848
|
+
readonly value?: SelectItemKey<Record<string, any>>;
|
|
23666
23849
|
readonly title?: string | undefined;
|
|
23667
23850
|
readonly fixed?: boolean | undefined;
|
|
23668
23851
|
readonly align?: "center" | "end" | "start" | undefined;
|
|
@@ -23679,7 +23862,27 @@ declare const VDataTable: {
|
|
|
23679
23862
|
readonly sort?: DataTableCompareFunction<any> | undefined;
|
|
23680
23863
|
readonly sortRaw?: DataTableCompareFunction<any> | undefined;
|
|
23681
23864
|
readonly filter?: FilterFunction | undefined;
|
|
23682
|
-
readonly children?: readonly
|
|
23865
|
+
readonly children?: readonly {
|
|
23866
|
+
readonly key?: (string & {}) | "data-table-group" | "data-table-select" | "data-table-expand" | undefined;
|
|
23867
|
+
readonly value?: SelectItemKey<Record<string, any>>;
|
|
23868
|
+
readonly title?: string | undefined;
|
|
23869
|
+
readonly fixed?: boolean | undefined;
|
|
23870
|
+
readonly align?: "center" | "end" | "start" | undefined;
|
|
23871
|
+
readonly width?: string | number | undefined;
|
|
23872
|
+
readonly minWidth?: string | undefined;
|
|
23873
|
+
readonly maxWidth?: string | undefined;
|
|
23874
|
+
readonly headerProps?: {
|
|
23875
|
+
readonly [x: string]: any;
|
|
23876
|
+
} | undefined;
|
|
23877
|
+
readonly cellProps?: ((data: Pick<ItemKeySlot<any>, "index" | "item" | "value" | "internalItem">) => Record<string, any>) | {
|
|
23878
|
+
readonly [x: string]: any;
|
|
23879
|
+
} | undefined;
|
|
23880
|
+
readonly sortable?: boolean | undefined;
|
|
23881
|
+
readonly sort?: DataTableCompareFunction<any> | undefined;
|
|
23882
|
+
readonly sortRaw?: DataTableCompareFunction<any> | undefined;
|
|
23883
|
+
readonly filter?: FilterFunction | undefined;
|
|
23884
|
+
readonly children?: readonly any[] | undefined;
|
|
23885
|
+
}[] | undefined;
|
|
23683
23886
|
}[]>;
|
|
23684
23887
|
groupBy: {
|
|
23685
23888
|
type: vue.PropType<readonly SortItem[]>;
|
|
@@ -23840,7 +24043,7 @@ declare const VDataTable: {
|
|
|
23840
24043
|
returnObject: BooleanConstructor;
|
|
23841
24044
|
headers: vue.PropType<readonly {
|
|
23842
24045
|
readonly key?: (string & {}) | "data-table-group" | "data-table-select" | "data-table-expand" | undefined;
|
|
23843
|
-
readonly value?: SelectItemKey
|
|
24046
|
+
readonly value?: SelectItemKey<Record<string, any>>;
|
|
23844
24047
|
readonly title?: string | undefined;
|
|
23845
24048
|
readonly fixed?: boolean | undefined;
|
|
23846
24049
|
readonly align?: "center" | "end" | "start" | undefined;
|
|
@@ -23857,7 +24060,27 @@ declare const VDataTable: {
|
|
|
23857
24060
|
readonly sort?: DataTableCompareFunction<any> | undefined;
|
|
23858
24061
|
readonly sortRaw?: DataTableCompareFunction<any> | undefined;
|
|
23859
24062
|
readonly filter?: FilterFunction | undefined;
|
|
23860
|
-
readonly children?: readonly
|
|
24063
|
+
readonly children?: readonly {
|
|
24064
|
+
readonly key?: (string & {}) | "data-table-group" | "data-table-select" | "data-table-expand" | undefined;
|
|
24065
|
+
readonly value?: SelectItemKey<Record<string, any>>;
|
|
24066
|
+
readonly title?: string | undefined;
|
|
24067
|
+
readonly fixed?: boolean | undefined;
|
|
24068
|
+
readonly align?: "center" | "end" | "start" | undefined;
|
|
24069
|
+
readonly width?: string | number | undefined;
|
|
24070
|
+
readonly minWidth?: string | undefined;
|
|
24071
|
+
readonly maxWidth?: string | undefined;
|
|
24072
|
+
readonly headerProps?: {
|
|
24073
|
+
readonly [x: string]: any;
|
|
24074
|
+
} | undefined;
|
|
24075
|
+
readonly cellProps?: ((data: Pick<ItemKeySlot<any>, "index" | "item" | "value" | "internalItem">) => Record<string, any>) | {
|
|
24076
|
+
readonly [x: string]: any;
|
|
24077
|
+
} | undefined;
|
|
24078
|
+
readonly sortable?: boolean | undefined;
|
|
24079
|
+
readonly sort?: DataTableCompareFunction<any> | undefined;
|
|
24080
|
+
readonly sortRaw?: DataTableCompareFunction<any> | undefined;
|
|
24081
|
+
readonly filter?: FilterFunction | undefined;
|
|
24082
|
+
readonly children?: readonly any[] | undefined;
|
|
24083
|
+
}[] | undefined;
|
|
23861
24084
|
}[]>;
|
|
23862
24085
|
groupBy: {
|
|
23863
24086
|
type: vue.PropType<readonly SortItem[]>;
|
|
@@ -24215,7 +24438,7 @@ declare const VDataTableVirtual: {
|
|
|
24215
24438
|
class?: any;
|
|
24216
24439
|
headers?: readonly {
|
|
24217
24440
|
readonly key?: (string & {}) | "data-table-group" | "data-table-select" | "data-table-expand" | undefined;
|
|
24218
|
-
readonly value?: SelectItemKey
|
|
24441
|
+
readonly value?: SelectItemKey<Record<string, any>>;
|
|
24219
24442
|
readonly title?: string | undefined;
|
|
24220
24443
|
readonly fixed?: boolean | undefined;
|
|
24221
24444
|
readonly align?: "center" | "end" | "start" | undefined;
|
|
@@ -24232,7 +24455,27 @@ declare const VDataTableVirtual: {
|
|
|
24232
24455
|
readonly sort?: DataTableCompareFunction<any> | undefined;
|
|
24233
24456
|
readonly sortRaw?: DataTableCompareFunction<any> | undefined;
|
|
24234
24457
|
readonly filter?: FilterFunction | undefined;
|
|
24235
|
-
readonly children?: readonly
|
|
24458
|
+
readonly children?: readonly {
|
|
24459
|
+
readonly key?: (string & {}) | "data-table-group" | "data-table-select" | "data-table-expand" | undefined;
|
|
24460
|
+
readonly value?: SelectItemKey<Record<string, any>>;
|
|
24461
|
+
readonly title?: string | undefined;
|
|
24462
|
+
readonly fixed?: boolean | undefined;
|
|
24463
|
+
readonly align?: "center" | "end" | "start" | undefined;
|
|
24464
|
+
readonly width?: string | number | undefined;
|
|
24465
|
+
readonly minWidth?: string | undefined;
|
|
24466
|
+
readonly maxWidth?: string | undefined;
|
|
24467
|
+
readonly headerProps?: {
|
|
24468
|
+
readonly [x: string]: any;
|
|
24469
|
+
} | undefined;
|
|
24470
|
+
readonly cellProps?: ((data: Pick<ItemKeySlot<any>, "index" | "item" | "value" | "internalItem">) => Record<string, any>) | {
|
|
24471
|
+
readonly [x: string]: any;
|
|
24472
|
+
} | undefined;
|
|
24473
|
+
readonly sortable?: boolean | undefined;
|
|
24474
|
+
readonly sort?: DataTableCompareFunction<any> | undefined;
|
|
24475
|
+
readonly sortRaw?: DataTableCompareFunction<any> | undefined;
|
|
24476
|
+
readonly filter?: FilterFunction | undefined;
|
|
24477
|
+
readonly children?: readonly any[] | undefined;
|
|
24478
|
+
}[] | undefined;
|
|
24236
24479
|
}[] | undefined;
|
|
24237
24480
|
theme?: string | undefined;
|
|
24238
24481
|
customFilter?: FilterFunction | undefined;
|
|
@@ -24287,7 +24530,7 @@ declare const VDataTableVirtual: {
|
|
|
24287
24530
|
class?: any;
|
|
24288
24531
|
headers?: readonly {
|
|
24289
24532
|
readonly key?: (string & {}) | "data-table-group" | "data-table-select" | "data-table-expand" | undefined;
|
|
24290
|
-
readonly value?: SelectItemKey
|
|
24533
|
+
readonly value?: SelectItemKey<Record<string, any>>;
|
|
24291
24534
|
readonly title?: string | undefined;
|
|
24292
24535
|
readonly fixed?: boolean | undefined;
|
|
24293
24536
|
readonly align?: "center" | "end" | "start" | undefined;
|
|
@@ -24304,7 +24547,27 @@ declare const VDataTableVirtual: {
|
|
|
24304
24547
|
readonly sort?: DataTableCompareFunction<any> | undefined;
|
|
24305
24548
|
readonly sortRaw?: DataTableCompareFunction<any> | undefined;
|
|
24306
24549
|
readonly filter?: FilterFunction | undefined;
|
|
24307
|
-
readonly children?: readonly
|
|
24550
|
+
readonly children?: readonly {
|
|
24551
|
+
readonly key?: (string & {}) | "data-table-group" | "data-table-select" | "data-table-expand" | undefined;
|
|
24552
|
+
readonly value?: SelectItemKey<Record<string, any>>;
|
|
24553
|
+
readonly title?: string | undefined;
|
|
24554
|
+
readonly fixed?: boolean | undefined;
|
|
24555
|
+
readonly align?: "center" | "end" | "start" | undefined;
|
|
24556
|
+
readonly width?: string | number | undefined;
|
|
24557
|
+
readonly minWidth?: string | undefined;
|
|
24558
|
+
readonly maxWidth?: string | undefined;
|
|
24559
|
+
readonly headerProps?: {
|
|
24560
|
+
readonly [x: string]: any;
|
|
24561
|
+
} | undefined;
|
|
24562
|
+
readonly cellProps?: ((data: Pick<ItemKeySlot<any>, "index" | "item" | "value" | "internalItem">) => Record<string, any>) | {
|
|
24563
|
+
readonly [x: string]: any;
|
|
24564
|
+
} | undefined;
|
|
24565
|
+
readonly sortable?: boolean | undefined;
|
|
24566
|
+
readonly sort?: DataTableCompareFunction<any> | undefined;
|
|
24567
|
+
readonly sortRaw?: DataTableCompareFunction<any> | undefined;
|
|
24568
|
+
readonly filter?: FilterFunction | undefined;
|
|
24569
|
+
readonly children?: readonly any[] | undefined;
|
|
24570
|
+
}[] | undefined;
|
|
24308
24571
|
}[] | undefined;
|
|
24309
24572
|
theme?: string | undefined;
|
|
24310
24573
|
customFilter?: FilterFunction | undefined;
|
|
@@ -24495,7 +24758,7 @@ declare const VDataTableVirtual: {
|
|
|
24495
24758
|
class?: any;
|
|
24496
24759
|
headers?: readonly {
|
|
24497
24760
|
readonly key?: (string & {}) | "data-table-group" | "data-table-select" | "data-table-expand" | undefined;
|
|
24498
|
-
readonly value?: SelectItemKey
|
|
24761
|
+
readonly value?: SelectItemKey<Record<string, any>>;
|
|
24499
24762
|
readonly title?: string | undefined;
|
|
24500
24763
|
readonly fixed?: boolean | undefined;
|
|
24501
24764
|
readonly align?: "center" | "end" | "start" | undefined;
|
|
@@ -24512,7 +24775,27 @@ declare const VDataTableVirtual: {
|
|
|
24512
24775
|
readonly sort?: DataTableCompareFunction<any> | undefined;
|
|
24513
24776
|
readonly sortRaw?: DataTableCompareFunction<any> | undefined;
|
|
24514
24777
|
readonly filter?: FilterFunction | undefined;
|
|
24515
|
-
readonly children?: readonly
|
|
24778
|
+
readonly children?: readonly {
|
|
24779
|
+
readonly key?: (string & {}) | "data-table-group" | "data-table-select" | "data-table-expand" | undefined;
|
|
24780
|
+
readonly value?: SelectItemKey<Record<string, any>>;
|
|
24781
|
+
readonly title?: string | undefined;
|
|
24782
|
+
readonly fixed?: boolean | undefined;
|
|
24783
|
+
readonly align?: "center" | "end" | "start" | undefined;
|
|
24784
|
+
readonly width?: string | number | undefined;
|
|
24785
|
+
readonly minWidth?: string | undefined;
|
|
24786
|
+
readonly maxWidth?: string | undefined;
|
|
24787
|
+
readonly headerProps?: {
|
|
24788
|
+
readonly [x: string]: any;
|
|
24789
|
+
} | undefined;
|
|
24790
|
+
readonly cellProps?: ((data: Pick<ItemKeySlot<any>, "index" | "item" | "value" | "internalItem">) => Record<string, any>) | {
|
|
24791
|
+
readonly [x: string]: any;
|
|
24792
|
+
} | undefined;
|
|
24793
|
+
readonly sortable?: boolean | undefined;
|
|
24794
|
+
readonly sort?: DataTableCompareFunction<any> | undefined;
|
|
24795
|
+
readonly sortRaw?: DataTableCompareFunction<any> | undefined;
|
|
24796
|
+
readonly filter?: FilterFunction | undefined;
|
|
24797
|
+
readonly children?: readonly any[] | undefined;
|
|
24798
|
+
}[] | undefined;
|
|
24516
24799
|
}[] | undefined;
|
|
24517
24800
|
theme?: string | undefined;
|
|
24518
24801
|
customFilter?: FilterFunction | undefined;
|
|
@@ -24592,7 +24875,7 @@ declare const VDataTableVirtual: {
|
|
|
24592
24875
|
class?: any;
|
|
24593
24876
|
headers?: readonly {
|
|
24594
24877
|
readonly key?: (string & {}) | "data-table-group" | "data-table-select" | "data-table-expand" | undefined;
|
|
24595
|
-
readonly value?: SelectItemKey
|
|
24878
|
+
readonly value?: SelectItemKey<Record<string, any>>;
|
|
24596
24879
|
readonly title?: string | undefined;
|
|
24597
24880
|
readonly fixed?: boolean | undefined;
|
|
24598
24881
|
readonly align?: "center" | "end" | "start" | undefined;
|
|
@@ -24609,7 +24892,27 @@ declare const VDataTableVirtual: {
|
|
|
24609
24892
|
readonly sort?: DataTableCompareFunction<any> | undefined;
|
|
24610
24893
|
readonly sortRaw?: DataTableCompareFunction<any> | undefined;
|
|
24611
24894
|
readonly filter?: FilterFunction | undefined;
|
|
24612
|
-
readonly children?: readonly
|
|
24895
|
+
readonly children?: readonly {
|
|
24896
|
+
readonly key?: (string & {}) | "data-table-group" | "data-table-select" | "data-table-expand" | undefined;
|
|
24897
|
+
readonly value?: SelectItemKey<Record<string, any>>;
|
|
24898
|
+
readonly title?: string | undefined;
|
|
24899
|
+
readonly fixed?: boolean | undefined;
|
|
24900
|
+
readonly align?: "center" | "end" | "start" | undefined;
|
|
24901
|
+
readonly width?: string | number | undefined;
|
|
24902
|
+
readonly minWidth?: string | undefined;
|
|
24903
|
+
readonly maxWidth?: string | undefined;
|
|
24904
|
+
readonly headerProps?: {
|
|
24905
|
+
readonly [x: string]: any;
|
|
24906
|
+
} | undefined;
|
|
24907
|
+
readonly cellProps?: ((data: Pick<ItemKeySlot<any>, "index" | "item" | "value" | "internalItem">) => Record<string, any>) | {
|
|
24908
|
+
readonly [x: string]: any;
|
|
24909
|
+
} | undefined;
|
|
24910
|
+
readonly sortable?: boolean | undefined;
|
|
24911
|
+
readonly sort?: DataTableCompareFunction<any> | undefined;
|
|
24912
|
+
readonly sortRaw?: DataTableCompareFunction<any> | undefined;
|
|
24913
|
+
readonly filter?: FilterFunction | undefined;
|
|
24914
|
+
readonly children?: readonly any[] | undefined;
|
|
24915
|
+
}[] | undefined;
|
|
24613
24916
|
}[] | undefined;
|
|
24614
24917
|
theme?: string | undefined;
|
|
24615
24918
|
customFilter?: FilterFunction | undefined;
|
|
@@ -24866,7 +25169,7 @@ declare const VDataTableVirtual: {
|
|
|
24866
25169
|
returnObject: BooleanConstructor;
|
|
24867
25170
|
headers: vue.PropType<readonly {
|
|
24868
25171
|
readonly key?: (string & {}) | "data-table-group" | "data-table-select" | "data-table-expand" | undefined;
|
|
24869
|
-
readonly value?: SelectItemKey
|
|
25172
|
+
readonly value?: SelectItemKey<Record<string, any>>;
|
|
24870
25173
|
readonly title?: string | undefined;
|
|
24871
25174
|
readonly fixed?: boolean | undefined;
|
|
24872
25175
|
readonly align?: "center" | "end" | "start" | undefined;
|
|
@@ -24883,7 +25186,27 @@ declare const VDataTableVirtual: {
|
|
|
24883
25186
|
readonly sort?: DataTableCompareFunction<any> | undefined;
|
|
24884
25187
|
readonly sortRaw?: DataTableCompareFunction<any> | undefined;
|
|
24885
25188
|
readonly filter?: FilterFunction | undefined;
|
|
24886
|
-
readonly children?: readonly
|
|
25189
|
+
readonly children?: readonly {
|
|
25190
|
+
readonly key?: (string & {}) | "data-table-group" | "data-table-select" | "data-table-expand" | undefined;
|
|
25191
|
+
readonly value?: SelectItemKey<Record<string, any>>;
|
|
25192
|
+
readonly title?: string | undefined;
|
|
25193
|
+
readonly fixed?: boolean | undefined;
|
|
25194
|
+
readonly align?: "center" | "end" | "start" | undefined;
|
|
25195
|
+
readonly width?: string | number | undefined;
|
|
25196
|
+
readonly minWidth?: string | undefined;
|
|
25197
|
+
readonly maxWidth?: string | undefined;
|
|
25198
|
+
readonly headerProps?: {
|
|
25199
|
+
readonly [x: string]: any;
|
|
25200
|
+
} | undefined;
|
|
25201
|
+
readonly cellProps?: ((data: Pick<ItemKeySlot<any>, "index" | "item" | "value" | "internalItem">) => Record<string, any>) | {
|
|
25202
|
+
readonly [x: string]: any;
|
|
25203
|
+
} | undefined;
|
|
25204
|
+
readonly sortable?: boolean | undefined;
|
|
25205
|
+
readonly sort?: DataTableCompareFunction<any> | undefined;
|
|
25206
|
+
readonly sortRaw?: DataTableCompareFunction<any> | undefined;
|
|
25207
|
+
readonly filter?: FilterFunction | undefined;
|
|
25208
|
+
readonly children?: readonly any[] | undefined;
|
|
25209
|
+
}[] | undefined;
|
|
24887
25210
|
}[]>;
|
|
24888
25211
|
expandOnClick: BooleanConstructor;
|
|
24889
25212
|
showExpand: BooleanConstructor;
|
|
@@ -24989,7 +25312,7 @@ declare const VDataTableVirtual: {
|
|
|
24989
25312
|
returnObject: BooleanConstructor;
|
|
24990
25313
|
headers: vue.PropType<readonly {
|
|
24991
25314
|
readonly key?: (string & {}) | "data-table-group" | "data-table-select" | "data-table-expand" | undefined;
|
|
24992
|
-
readonly value?: SelectItemKey
|
|
25315
|
+
readonly value?: SelectItemKey<Record<string, any>>;
|
|
24993
25316
|
readonly title?: string | undefined;
|
|
24994
25317
|
readonly fixed?: boolean | undefined;
|
|
24995
25318
|
readonly align?: "center" | "end" | "start" | undefined;
|
|
@@ -25006,7 +25329,27 @@ declare const VDataTableVirtual: {
|
|
|
25006
25329
|
readonly sort?: DataTableCompareFunction<any> | undefined;
|
|
25007
25330
|
readonly sortRaw?: DataTableCompareFunction<any> | undefined;
|
|
25008
25331
|
readonly filter?: FilterFunction | undefined;
|
|
25009
|
-
readonly children?: readonly
|
|
25332
|
+
readonly children?: readonly {
|
|
25333
|
+
readonly key?: (string & {}) | "data-table-group" | "data-table-select" | "data-table-expand" | undefined;
|
|
25334
|
+
readonly value?: SelectItemKey<Record<string, any>>;
|
|
25335
|
+
readonly title?: string | undefined;
|
|
25336
|
+
readonly fixed?: boolean | undefined;
|
|
25337
|
+
readonly align?: "center" | "end" | "start" | undefined;
|
|
25338
|
+
readonly width?: string | number | undefined;
|
|
25339
|
+
readonly minWidth?: string | undefined;
|
|
25340
|
+
readonly maxWidth?: string | undefined;
|
|
25341
|
+
readonly headerProps?: {
|
|
25342
|
+
readonly [x: string]: any;
|
|
25343
|
+
} | undefined;
|
|
25344
|
+
readonly cellProps?: ((data: Pick<ItemKeySlot<any>, "index" | "item" | "value" | "internalItem">) => Record<string, any>) | {
|
|
25345
|
+
readonly [x: string]: any;
|
|
25346
|
+
} | undefined;
|
|
25347
|
+
readonly sortable?: boolean | undefined;
|
|
25348
|
+
readonly sort?: DataTableCompareFunction<any> | undefined;
|
|
25349
|
+
readonly sortRaw?: DataTableCompareFunction<any> | undefined;
|
|
25350
|
+
readonly filter?: FilterFunction | undefined;
|
|
25351
|
+
readonly children?: readonly any[] | undefined;
|
|
25352
|
+
}[] | undefined;
|
|
25010
25353
|
}[]>;
|
|
25011
25354
|
expandOnClick: BooleanConstructor;
|
|
25012
25355
|
showExpand: BooleanConstructor;
|
|
@@ -25081,7 +25424,7 @@ declare const VDataTableServer: {
|
|
|
25081
25424
|
class?: any;
|
|
25082
25425
|
headers?: readonly {
|
|
25083
25426
|
readonly key?: (string & {}) | "data-table-group" | "data-table-select" | "data-table-expand" | undefined;
|
|
25084
|
-
readonly value?: SelectItemKey
|
|
25427
|
+
readonly value?: SelectItemKey<Record<string, any>>;
|
|
25085
25428
|
readonly title?: string | undefined;
|
|
25086
25429
|
readonly fixed?: boolean | undefined;
|
|
25087
25430
|
readonly align?: "center" | "end" | "start" | undefined;
|
|
@@ -25098,7 +25441,27 @@ declare const VDataTableServer: {
|
|
|
25098
25441
|
readonly sort?: DataTableCompareFunction<any> | undefined;
|
|
25099
25442
|
readonly sortRaw?: DataTableCompareFunction<any> | undefined;
|
|
25100
25443
|
readonly filter?: FilterFunction | undefined;
|
|
25101
|
-
readonly children?: readonly
|
|
25444
|
+
readonly children?: readonly {
|
|
25445
|
+
readonly key?: (string & {}) | "data-table-group" | "data-table-select" | "data-table-expand" | undefined;
|
|
25446
|
+
readonly value?: SelectItemKey<Record<string, any>>;
|
|
25447
|
+
readonly title?: string | undefined;
|
|
25448
|
+
readonly fixed?: boolean | undefined;
|
|
25449
|
+
readonly align?: "center" | "end" | "start" | undefined;
|
|
25450
|
+
readonly width?: string | number | undefined;
|
|
25451
|
+
readonly minWidth?: string | undefined;
|
|
25452
|
+
readonly maxWidth?: string | undefined;
|
|
25453
|
+
readonly headerProps?: {
|
|
25454
|
+
readonly [x: string]: any;
|
|
25455
|
+
} | undefined;
|
|
25456
|
+
readonly cellProps?: ((data: Pick<ItemKeySlot<any>, "index" | "item" | "value" | "internalItem">) => Record<string, any>) | {
|
|
25457
|
+
readonly [x: string]: any;
|
|
25458
|
+
} | undefined;
|
|
25459
|
+
readonly sortable?: boolean | undefined;
|
|
25460
|
+
readonly sort?: DataTableCompareFunction<any> | undefined;
|
|
25461
|
+
readonly sortRaw?: DataTableCompareFunction<any> | undefined;
|
|
25462
|
+
readonly filter?: FilterFunction | undefined;
|
|
25463
|
+
readonly children?: readonly any[] | undefined;
|
|
25464
|
+
}[] | undefined;
|
|
25102
25465
|
}[] | undefined;
|
|
25103
25466
|
theme?: string | undefined;
|
|
25104
25467
|
customKeySort?: Record<string, DataTableCompareFunction> | undefined;
|
|
@@ -25169,7 +25532,7 @@ declare const VDataTableServer: {
|
|
|
25169
25532
|
class?: any;
|
|
25170
25533
|
headers?: readonly {
|
|
25171
25534
|
readonly key?: (string & {}) | "data-table-group" | "data-table-select" | "data-table-expand" | undefined;
|
|
25172
|
-
readonly value?: SelectItemKey
|
|
25535
|
+
readonly value?: SelectItemKey<Record<string, any>>;
|
|
25173
25536
|
readonly title?: string | undefined;
|
|
25174
25537
|
readonly fixed?: boolean | undefined;
|
|
25175
25538
|
readonly align?: "center" | "end" | "start" | undefined;
|
|
@@ -25186,7 +25549,27 @@ declare const VDataTableServer: {
|
|
|
25186
25549
|
readonly sort?: DataTableCompareFunction<any> | undefined;
|
|
25187
25550
|
readonly sortRaw?: DataTableCompareFunction<any> | undefined;
|
|
25188
25551
|
readonly filter?: FilterFunction | undefined;
|
|
25189
|
-
readonly children?: readonly
|
|
25552
|
+
readonly children?: readonly {
|
|
25553
|
+
readonly key?: (string & {}) | "data-table-group" | "data-table-select" | "data-table-expand" | undefined;
|
|
25554
|
+
readonly value?: SelectItemKey<Record<string, any>>;
|
|
25555
|
+
readonly title?: string | undefined;
|
|
25556
|
+
readonly fixed?: boolean | undefined;
|
|
25557
|
+
readonly align?: "center" | "end" | "start" | undefined;
|
|
25558
|
+
readonly width?: string | number | undefined;
|
|
25559
|
+
readonly minWidth?: string | undefined;
|
|
25560
|
+
readonly maxWidth?: string | undefined;
|
|
25561
|
+
readonly headerProps?: {
|
|
25562
|
+
readonly [x: string]: any;
|
|
25563
|
+
} | undefined;
|
|
25564
|
+
readonly cellProps?: ((data: Pick<ItemKeySlot<any>, "index" | "item" | "value" | "internalItem">) => Record<string, any>) | {
|
|
25565
|
+
readonly [x: string]: any;
|
|
25566
|
+
} | undefined;
|
|
25567
|
+
readonly sortable?: boolean | undefined;
|
|
25568
|
+
readonly sort?: DataTableCompareFunction<any> | undefined;
|
|
25569
|
+
readonly sortRaw?: DataTableCompareFunction<any> | undefined;
|
|
25570
|
+
readonly filter?: FilterFunction | undefined;
|
|
25571
|
+
readonly children?: readonly any[] | undefined;
|
|
25572
|
+
}[] | undefined;
|
|
25190
25573
|
}[] | undefined;
|
|
25191
25574
|
theme?: string | undefined;
|
|
25192
25575
|
customKeySort?: Record<string, DataTableCompareFunction> | undefined;
|
|
@@ -25421,7 +25804,7 @@ declare const VDataTableServer: {
|
|
|
25421
25804
|
class?: any;
|
|
25422
25805
|
headers?: readonly {
|
|
25423
25806
|
readonly key?: (string & {}) | "data-table-group" | "data-table-select" | "data-table-expand" | undefined;
|
|
25424
|
-
readonly value?: SelectItemKey
|
|
25807
|
+
readonly value?: SelectItemKey<Record<string, any>>;
|
|
25425
25808
|
readonly title?: string | undefined;
|
|
25426
25809
|
readonly fixed?: boolean | undefined;
|
|
25427
25810
|
readonly align?: "center" | "end" | "start" | undefined;
|
|
@@ -25438,7 +25821,27 @@ declare const VDataTableServer: {
|
|
|
25438
25821
|
readonly sort?: DataTableCompareFunction<any> | undefined;
|
|
25439
25822
|
readonly sortRaw?: DataTableCompareFunction<any> | undefined;
|
|
25440
25823
|
readonly filter?: FilterFunction | undefined;
|
|
25441
|
-
readonly children?: readonly
|
|
25824
|
+
readonly children?: readonly {
|
|
25825
|
+
readonly key?: (string & {}) | "data-table-group" | "data-table-select" | "data-table-expand" | undefined;
|
|
25826
|
+
readonly value?: SelectItemKey<Record<string, any>>;
|
|
25827
|
+
readonly title?: string | undefined;
|
|
25828
|
+
readonly fixed?: boolean | undefined;
|
|
25829
|
+
readonly align?: "center" | "end" | "start" | undefined;
|
|
25830
|
+
readonly width?: string | number | undefined;
|
|
25831
|
+
readonly minWidth?: string | undefined;
|
|
25832
|
+
readonly maxWidth?: string | undefined;
|
|
25833
|
+
readonly headerProps?: {
|
|
25834
|
+
readonly [x: string]: any;
|
|
25835
|
+
} | undefined;
|
|
25836
|
+
readonly cellProps?: ((data: Pick<ItemKeySlot<any>, "index" | "item" | "value" | "internalItem">) => Record<string, any>) | {
|
|
25837
|
+
readonly [x: string]: any;
|
|
25838
|
+
} | undefined;
|
|
25839
|
+
readonly sortable?: boolean | undefined;
|
|
25840
|
+
readonly sort?: DataTableCompareFunction<any> | undefined;
|
|
25841
|
+
readonly sortRaw?: DataTableCompareFunction<any> | undefined;
|
|
25842
|
+
readonly filter?: FilterFunction | undefined;
|
|
25843
|
+
readonly children?: readonly any[] | undefined;
|
|
25844
|
+
}[] | undefined;
|
|
25442
25845
|
}[] | undefined;
|
|
25443
25846
|
theme?: string | undefined;
|
|
25444
25847
|
customKeySort?: Record<string, DataTableCompareFunction> | undefined;
|
|
@@ -25546,7 +25949,7 @@ declare const VDataTableServer: {
|
|
|
25546
25949
|
class?: any;
|
|
25547
25950
|
headers?: readonly {
|
|
25548
25951
|
readonly key?: (string & {}) | "data-table-group" | "data-table-select" | "data-table-expand" | undefined;
|
|
25549
|
-
readonly value?: SelectItemKey
|
|
25952
|
+
readonly value?: SelectItemKey<Record<string, any>>;
|
|
25550
25953
|
readonly title?: string | undefined;
|
|
25551
25954
|
readonly fixed?: boolean | undefined;
|
|
25552
25955
|
readonly align?: "center" | "end" | "start" | undefined;
|
|
@@ -25563,7 +25966,27 @@ declare const VDataTableServer: {
|
|
|
25563
25966
|
readonly sort?: DataTableCompareFunction<any> | undefined;
|
|
25564
25967
|
readonly sortRaw?: DataTableCompareFunction<any> | undefined;
|
|
25565
25968
|
readonly filter?: FilterFunction | undefined;
|
|
25566
|
-
readonly children?: readonly
|
|
25969
|
+
readonly children?: readonly {
|
|
25970
|
+
readonly key?: (string & {}) | "data-table-group" | "data-table-select" | "data-table-expand" | undefined;
|
|
25971
|
+
readonly value?: SelectItemKey<Record<string, any>>;
|
|
25972
|
+
readonly title?: string | undefined;
|
|
25973
|
+
readonly fixed?: boolean | undefined;
|
|
25974
|
+
readonly align?: "center" | "end" | "start" | undefined;
|
|
25975
|
+
readonly width?: string | number | undefined;
|
|
25976
|
+
readonly minWidth?: string | undefined;
|
|
25977
|
+
readonly maxWidth?: string | undefined;
|
|
25978
|
+
readonly headerProps?: {
|
|
25979
|
+
readonly [x: string]: any;
|
|
25980
|
+
} | undefined;
|
|
25981
|
+
readonly cellProps?: ((data: Pick<ItemKeySlot<any>, "index" | "item" | "value" | "internalItem">) => Record<string, any>) | {
|
|
25982
|
+
readonly [x: string]: any;
|
|
25983
|
+
} | undefined;
|
|
25984
|
+
readonly sortable?: boolean | undefined;
|
|
25985
|
+
readonly sort?: DataTableCompareFunction<any> | undefined;
|
|
25986
|
+
readonly sortRaw?: DataTableCompareFunction<any> | undefined;
|
|
25987
|
+
readonly filter?: FilterFunction | undefined;
|
|
25988
|
+
readonly children?: readonly any[] | undefined;
|
|
25989
|
+
}[] | undefined;
|
|
25567
25990
|
}[] | undefined;
|
|
25568
25991
|
theme?: string | undefined;
|
|
25569
25992
|
customKeySort?: Record<string, DataTableCompareFunction> | undefined;
|
|
@@ -25886,7 +26309,7 @@ declare const VDataTableServer: {
|
|
|
25886
26309
|
returnObject: BooleanConstructor;
|
|
25887
26310
|
headers: vue.PropType<readonly {
|
|
25888
26311
|
readonly key?: (string & {}) | "data-table-group" | "data-table-select" | "data-table-expand" | undefined;
|
|
25889
|
-
readonly value?: SelectItemKey
|
|
26312
|
+
readonly value?: SelectItemKey<Record<string, any>>;
|
|
25890
26313
|
readonly title?: string | undefined;
|
|
25891
26314
|
readonly fixed?: boolean | undefined;
|
|
25892
26315
|
readonly align?: "center" | "end" | "start" | undefined;
|
|
@@ -25903,7 +26326,27 @@ declare const VDataTableServer: {
|
|
|
25903
26326
|
readonly sort?: DataTableCompareFunction<any> | undefined;
|
|
25904
26327
|
readonly sortRaw?: DataTableCompareFunction<any> | undefined;
|
|
25905
26328
|
readonly filter?: FilterFunction | undefined;
|
|
25906
|
-
readonly children?: readonly
|
|
26329
|
+
readonly children?: readonly {
|
|
26330
|
+
readonly key?: (string & {}) | "data-table-group" | "data-table-select" | "data-table-expand" | undefined;
|
|
26331
|
+
readonly value?: SelectItemKey<Record<string, any>>;
|
|
26332
|
+
readonly title?: string | undefined;
|
|
26333
|
+
readonly fixed?: boolean | undefined;
|
|
26334
|
+
readonly align?: "center" | "end" | "start" | undefined;
|
|
26335
|
+
readonly width?: string | number | undefined;
|
|
26336
|
+
readonly minWidth?: string | undefined;
|
|
26337
|
+
readonly maxWidth?: string | undefined;
|
|
26338
|
+
readonly headerProps?: {
|
|
26339
|
+
readonly [x: string]: any;
|
|
26340
|
+
} | undefined;
|
|
26341
|
+
readonly cellProps?: ((data: Pick<ItemKeySlot<any>, "index" | "item" | "value" | "internalItem">) => Record<string, any>) | {
|
|
26342
|
+
readonly [x: string]: any;
|
|
26343
|
+
} | undefined;
|
|
26344
|
+
readonly sortable?: boolean | undefined;
|
|
26345
|
+
readonly sort?: DataTableCompareFunction<any> | undefined;
|
|
26346
|
+
readonly sortRaw?: DataTableCompareFunction<any> | undefined;
|
|
26347
|
+
readonly filter?: FilterFunction | undefined;
|
|
26348
|
+
readonly children?: readonly any[] | undefined;
|
|
26349
|
+
}[] | undefined;
|
|
25907
26350
|
}[]>;
|
|
25908
26351
|
groupBy: {
|
|
25909
26352
|
type: vue.PropType<readonly SortItem[]>;
|
|
@@ -26060,7 +26503,7 @@ declare const VDataTableServer: {
|
|
|
26060
26503
|
returnObject: BooleanConstructor;
|
|
26061
26504
|
headers: vue.PropType<readonly {
|
|
26062
26505
|
readonly key?: (string & {}) | "data-table-group" | "data-table-select" | "data-table-expand" | undefined;
|
|
26063
|
-
readonly value?: SelectItemKey
|
|
26506
|
+
readonly value?: SelectItemKey<Record<string, any>>;
|
|
26064
26507
|
readonly title?: string | undefined;
|
|
26065
26508
|
readonly fixed?: boolean | undefined;
|
|
26066
26509
|
readonly align?: "center" | "end" | "start" | undefined;
|
|
@@ -26077,7 +26520,27 @@ declare const VDataTableServer: {
|
|
|
26077
26520
|
readonly sort?: DataTableCompareFunction<any> | undefined;
|
|
26078
26521
|
readonly sortRaw?: DataTableCompareFunction<any> | undefined;
|
|
26079
26522
|
readonly filter?: FilterFunction | undefined;
|
|
26080
|
-
readonly children?: readonly
|
|
26523
|
+
readonly children?: readonly {
|
|
26524
|
+
readonly key?: (string & {}) | "data-table-group" | "data-table-select" | "data-table-expand" | undefined;
|
|
26525
|
+
readonly value?: SelectItemKey<Record<string, any>>;
|
|
26526
|
+
readonly title?: string | undefined;
|
|
26527
|
+
readonly fixed?: boolean | undefined;
|
|
26528
|
+
readonly align?: "center" | "end" | "start" | undefined;
|
|
26529
|
+
readonly width?: string | number | undefined;
|
|
26530
|
+
readonly minWidth?: string | undefined;
|
|
26531
|
+
readonly maxWidth?: string | undefined;
|
|
26532
|
+
readonly headerProps?: {
|
|
26533
|
+
readonly [x: string]: any;
|
|
26534
|
+
} | undefined;
|
|
26535
|
+
readonly cellProps?: ((data: Pick<ItemKeySlot<any>, "index" | "item" | "value" | "internalItem">) => Record<string, any>) | {
|
|
26536
|
+
readonly [x: string]: any;
|
|
26537
|
+
} | undefined;
|
|
26538
|
+
readonly sortable?: boolean | undefined;
|
|
26539
|
+
readonly sort?: DataTableCompareFunction<any> | undefined;
|
|
26540
|
+
readonly sortRaw?: DataTableCompareFunction<any> | undefined;
|
|
26541
|
+
readonly filter?: FilterFunction | undefined;
|
|
26542
|
+
readonly children?: readonly any[] | undefined;
|
|
26543
|
+
}[] | undefined;
|
|
26081
26544
|
}[]>;
|
|
26082
26545
|
groupBy: {
|
|
26083
26546
|
type: vue.PropType<readonly SortItem[]>;
|
|
@@ -26136,6 +26599,7 @@ declare const VDatePicker: {
|
|
|
26136
26599
|
disabled: boolean;
|
|
26137
26600
|
tag: string;
|
|
26138
26601
|
landscape: boolean;
|
|
26602
|
+
tile: boolean;
|
|
26139
26603
|
nextIcon: string;
|
|
26140
26604
|
prevIcon: string;
|
|
26141
26605
|
modeIcon: string;
|
|
@@ -26185,6 +26649,7 @@ declare const VDatePicker: {
|
|
|
26185
26649
|
disabled: boolean;
|
|
26186
26650
|
tag: string;
|
|
26187
26651
|
landscape: boolean;
|
|
26652
|
+
tile: boolean;
|
|
26188
26653
|
nextIcon: string;
|
|
26189
26654
|
prevIcon: string;
|
|
26190
26655
|
modeIcon: string;
|
|
@@ -26231,6 +26696,7 @@ declare const VDatePicker: {
|
|
|
26231
26696
|
tag: string;
|
|
26232
26697
|
landscape: boolean;
|
|
26233
26698
|
rounded: string | number | boolean;
|
|
26699
|
+
tile: boolean;
|
|
26234
26700
|
nextIcon: string;
|
|
26235
26701
|
prevIcon: string;
|
|
26236
26702
|
modeIcon: string;
|
|
@@ -26270,6 +26736,7 @@ declare const VDatePicker: {
|
|
|
26270
26736
|
disabled: boolean;
|
|
26271
26737
|
tag: string;
|
|
26272
26738
|
landscape: boolean;
|
|
26739
|
+
tile: boolean;
|
|
26273
26740
|
nextIcon: string;
|
|
26274
26741
|
prevIcon: string;
|
|
26275
26742
|
modeIcon: string;
|
|
@@ -26316,6 +26783,7 @@ declare const VDatePicker: {
|
|
|
26316
26783
|
tag: string;
|
|
26317
26784
|
landscape: boolean;
|
|
26318
26785
|
rounded: string | number | boolean;
|
|
26786
|
+
tile: boolean;
|
|
26319
26787
|
nextIcon: string;
|
|
26320
26788
|
prevIcon: string;
|
|
26321
26789
|
modeIcon: string;
|
|
@@ -26336,6 +26804,7 @@ declare const VDatePicker: {
|
|
|
26336
26804
|
disabled: boolean;
|
|
26337
26805
|
tag: string;
|
|
26338
26806
|
landscape: boolean;
|
|
26807
|
+
tile: boolean;
|
|
26339
26808
|
nextIcon: string;
|
|
26340
26809
|
prevIcon: string;
|
|
26341
26810
|
modeIcon: string;
|
|
@@ -26387,6 +26856,7 @@ declare const VDatePicker: {
|
|
|
26387
26856
|
tag: string;
|
|
26388
26857
|
landscape: boolean;
|
|
26389
26858
|
rounded: string | number | boolean;
|
|
26859
|
+
tile: boolean;
|
|
26390
26860
|
nextIcon: string;
|
|
26391
26861
|
prevIcon: string;
|
|
26392
26862
|
modeIcon: string;
|
|
@@ -26431,6 +26901,7 @@ declare const VDatePicker: {
|
|
|
26431
26901
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
26432
26902
|
default: undefined;
|
|
26433
26903
|
};
|
|
26904
|
+
tile: BooleanConstructor;
|
|
26434
26905
|
position: {
|
|
26435
26906
|
type: vue.PropType<"fixed" | "absolute" | "static" | "sticky" | "relative">;
|
|
26436
26907
|
validator: (v: any) => boolean;
|
|
@@ -26524,6 +26995,7 @@ declare const VDatePicker: {
|
|
|
26524
26995
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
26525
26996
|
default: undefined;
|
|
26526
26997
|
};
|
|
26998
|
+
tile: BooleanConstructor;
|
|
26527
26999
|
position: {
|
|
26528
27000
|
type: vue.PropType<"fixed" | "absolute" | "static" | "sticky" | "relative">;
|
|
26529
27001
|
validator: (v: any) => boolean;
|
|
@@ -27317,7 +27789,7 @@ declare const VDatePickerMonths: {
|
|
|
27317
27789
|
} & {
|
|
27318
27790
|
"onUpdate:modelValue"?: ((date: any) => any) | undefined;
|
|
27319
27791
|
}, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
27320
|
-
'update:modelValue': (date: any) =>
|
|
27792
|
+
'update:modelValue': (date: any) => true;
|
|
27321
27793
|
}, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {} & {
|
|
27322
27794
|
height?: string | number | undefined;
|
|
27323
27795
|
color?: string | undefined;
|
|
@@ -27469,7 +27941,7 @@ declare const VDatePickerMonths: {
|
|
|
27469
27941
|
} & {
|
|
27470
27942
|
"onUpdate:modelValue"?: ((date: any) => any) | undefined;
|
|
27471
27943
|
}, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
27472
|
-
'update:modelValue': (date: any) =>
|
|
27944
|
+
'update:modelValue': (date: any) => true;
|
|
27473
27945
|
}, string, {}, {}, string, vue.SlotsType<Partial<{
|
|
27474
27946
|
month: (arg: {
|
|
27475
27947
|
month: {
|
|
@@ -27555,7 +28027,7 @@ declare const VDatePickerYears: {
|
|
|
27555
28027
|
} & {
|
|
27556
28028
|
"onUpdate:modelValue"?: ((year: number) => any) | undefined;
|
|
27557
28029
|
}, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
27558
|
-
'update:modelValue': (year: number) =>
|
|
28030
|
+
'update:modelValue': (year: number) => true;
|
|
27559
28031
|
}, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {} & {
|
|
27560
28032
|
max?: unknown;
|
|
27561
28033
|
height?: string | number | undefined;
|
|
@@ -27763,7 +28235,7 @@ declare const VDatePickerYears: {
|
|
|
27763
28235
|
} & {
|
|
27764
28236
|
"onUpdate:modelValue"?: ((year: number) => any) | undefined;
|
|
27765
28237
|
}, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
27766
|
-
'update:modelValue': (year: number) =>
|
|
28238
|
+
'update:modelValue': (year: number) => true;
|
|
27767
28239
|
}, string, {}, {}, string, vue.SlotsType<Partial<{
|
|
27768
28240
|
year: (arg: {
|
|
27769
28241
|
year: {
|
|
@@ -30043,6 +30515,7 @@ type VDivider = InstanceType<typeof VDivider>;
|
|
|
30043
30515
|
|
|
30044
30516
|
declare const VExpansionPanels: {
|
|
30045
30517
|
new (...args: any[]): vue.CreateComponentPublicInstance<{
|
|
30518
|
+
flat: boolean;
|
|
30046
30519
|
variant: "default" | "inset" | "accordion" | "popout";
|
|
30047
30520
|
style: vue.StyleValue;
|
|
30048
30521
|
disabled: boolean;
|
|
@@ -30050,6 +30523,7 @@ declare const VExpansionPanels: {
|
|
|
30050
30523
|
readonly: boolean;
|
|
30051
30524
|
static: boolean;
|
|
30052
30525
|
tag: string;
|
|
30526
|
+
tile: boolean;
|
|
30053
30527
|
} & {
|
|
30054
30528
|
max?: number | undefined;
|
|
30055
30529
|
color?: string | undefined;
|
|
@@ -30072,6 +30546,7 @@ declare const VExpansionPanels: {
|
|
|
30072
30546
|
}, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
30073
30547
|
'update:modelValue': (val: unknown) => boolean;
|
|
30074
30548
|
}, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
|
30549
|
+
flat: boolean;
|
|
30075
30550
|
variant: "default" | "inset" | "accordion" | "popout";
|
|
30076
30551
|
style: vue.StyleValue;
|
|
30077
30552
|
disabled: boolean;
|
|
@@ -30079,6 +30554,7 @@ declare const VExpansionPanels: {
|
|
|
30079
30554
|
readonly: boolean;
|
|
30080
30555
|
static: boolean;
|
|
30081
30556
|
tag: string;
|
|
30557
|
+
tile: boolean;
|
|
30082
30558
|
} & {
|
|
30083
30559
|
max?: number | undefined;
|
|
30084
30560
|
color?: string | undefined;
|
|
@@ -30099,6 +30575,7 @@ declare const VExpansionPanels: {
|
|
|
30099
30575
|
} & {
|
|
30100
30576
|
"onUpdate:modelValue"?: ((val: unknown) => any) | undefined;
|
|
30101
30577
|
}, {
|
|
30578
|
+
flat: boolean;
|
|
30102
30579
|
variant: "default" | "inset" | "accordion" | "popout";
|
|
30103
30580
|
style: vue.StyleValue;
|
|
30104
30581
|
disabled: boolean;
|
|
@@ -30106,6 +30583,7 @@ declare const VExpansionPanels: {
|
|
|
30106
30583
|
readonly: boolean;
|
|
30107
30584
|
static: boolean;
|
|
30108
30585
|
tag: string;
|
|
30586
|
+
tile: boolean;
|
|
30109
30587
|
modelValue: any;
|
|
30110
30588
|
}, true, {}, vue.SlotsType<Partial<{
|
|
30111
30589
|
default: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
@@ -30119,6 +30597,7 @@ declare const VExpansionPanels: {
|
|
|
30119
30597
|
M: {};
|
|
30120
30598
|
Defaults: {};
|
|
30121
30599
|
}, {
|
|
30600
|
+
flat: boolean;
|
|
30122
30601
|
variant: "default" | "inset" | "accordion" | "popout";
|
|
30123
30602
|
style: vue.StyleValue;
|
|
30124
30603
|
disabled: boolean;
|
|
@@ -30126,6 +30605,7 @@ declare const VExpansionPanels: {
|
|
|
30126
30605
|
readonly: boolean;
|
|
30127
30606
|
static: boolean;
|
|
30128
30607
|
tag: string;
|
|
30608
|
+
tile: boolean;
|
|
30129
30609
|
} & {
|
|
30130
30610
|
max?: number | undefined;
|
|
30131
30611
|
color?: string | undefined;
|
|
@@ -30146,6 +30626,7 @@ declare const VExpansionPanels: {
|
|
|
30146
30626
|
} & {
|
|
30147
30627
|
"onUpdate:modelValue"?: ((val: unknown) => any) | undefined;
|
|
30148
30628
|
}, {}, {}, {}, {}, {
|
|
30629
|
+
flat: boolean;
|
|
30149
30630
|
variant: "default" | "inset" | "accordion" | "popout";
|
|
30150
30631
|
style: vue.StyleValue;
|
|
30151
30632
|
disabled: boolean;
|
|
@@ -30153,12 +30634,14 @@ declare const VExpansionPanels: {
|
|
|
30153
30634
|
readonly: boolean;
|
|
30154
30635
|
static: boolean;
|
|
30155
30636
|
tag: string;
|
|
30637
|
+
tile: boolean;
|
|
30156
30638
|
modelValue: any;
|
|
30157
30639
|
}>;
|
|
30158
30640
|
__isFragment?: undefined;
|
|
30159
30641
|
__isTeleport?: undefined;
|
|
30160
30642
|
__isSuspense?: undefined;
|
|
30161
30643
|
} & vue.ComponentOptionsBase<{
|
|
30644
|
+
flat: boolean;
|
|
30162
30645
|
variant: "default" | "inset" | "accordion" | "popout";
|
|
30163
30646
|
style: vue.StyleValue;
|
|
30164
30647
|
disabled: boolean;
|
|
@@ -30166,6 +30649,7 @@ declare const VExpansionPanels: {
|
|
|
30166
30649
|
readonly: boolean;
|
|
30167
30650
|
static: boolean;
|
|
30168
30651
|
tag: string;
|
|
30652
|
+
tile: boolean;
|
|
30169
30653
|
} & {
|
|
30170
30654
|
max?: number | undefined;
|
|
30171
30655
|
color?: string | undefined;
|
|
@@ -30188,6 +30672,7 @@ declare const VExpansionPanels: {
|
|
|
30188
30672
|
}, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
30189
30673
|
'update:modelValue': (val: unknown) => boolean;
|
|
30190
30674
|
}, string, {
|
|
30675
|
+
flat: boolean;
|
|
30191
30676
|
variant: "default" | "inset" | "accordion" | "popout";
|
|
30192
30677
|
style: vue.StyleValue;
|
|
30193
30678
|
disabled: boolean;
|
|
@@ -30195,6 +30680,7 @@ declare const VExpansionPanels: {
|
|
|
30195
30680
|
readonly: boolean;
|
|
30196
30681
|
static: boolean;
|
|
30197
30682
|
tag: string;
|
|
30683
|
+
tile: boolean;
|
|
30198
30684
|
modelValue: any;
|
|
30199
30685
|
}, {}, string, vue.SlotsType<Partial<{
|
|
30200
30686
|
default: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
@@ -30221,7 +30707,9 @@ declare const VExpansionPanels: {
|
|
|
30221
30707
|
default: null;
|
|
30222
30708
|
};
|
|
30223
30709
|
color: StringConstructor;
|
|
30710
|
+
flat: BooleanConstructor;
|
|
30224
30711
|
static: BooleanConstructor;
|
|
30712
|
+
tile: BooleanConstructor;
|
|
30225
30713
|
variant: {
|
|
30226
30714
|
type: PropType<"default" | "inset" | "accordion" | "popout">;
|
|
30227
30715
|
default: string;
|
|
@@ -30249,7 +30737,9 @@ declare const VExpansionPanels: {
|
|
|
30249
30737
|
default: null;
|
|
30250
30738
|
};
|
|
30251
30739
|
color: StringConstructor;
|
|
30740
|
+
flat: BooleanConstructor;
|
|
30252
30741
|
static: BooleanConstructor;
|
|
30742
|
+
tile: BooleanConstructor;
|
|
30253
30743
|
variant: {
|
|
30254
30744
|
type: PropType<"default" | "inset" | "accordion" | "popout">;
|
|
30255
30745
|
default: string;
|
|
@@ -30267,6 +30757,7 @@ declare const VExpansionPanel: {
|
|
|
30267
30757
|
readonly: boolean;
|
|
30268
30758
|
static: boolean;
|
|
30269
30759
|
tag: string;
|
|
30760
|
+
tile: boolean;
|
|
30270
30761
|
ripple: boolean | {
|
|
30271
30762
|
class: string;
|
|
30272
30763
|
} | undefined;
|
|
@@ -30313,6 +30804,7 @@ declare const VExpansionPanel: {
|
|
|
30313
30804
|
readonly: boolean;
|
|
30314
30805
|
static: boolean;
|
|
30315
30806
|
tag: string;
|
|
30807
|
+
tile: boolean;
|
|
30316
30808
|
ripple: boolean | {
|
|
30317
30809
|
class: string;
|
|
30318
30810
|
} | undefined;
|
|
@@ -30356,6 +30848,7 @@ declare const VExpansionPanel: {
|
|
|
30356
30848
|
static: boolean;
|
|
30357
30849
|
tag: string;
|
|
30358
30850
|
rounded: string | number | boolean;
|
|
30851
|
+
tile: boolean;
|
|
30359
30852
|
ripple: boolean | {
|
|
30360
30853
|
class: string;
|
|
30361
30854
|
} | undefined;
|
|
@@ -30386,6 +30879,7 @@ declare const VExpansionPanel: {
|
|
|
30386
30879
|
readonly: boolean;
|
|
30387
30880
|
static: boolean;
|
|
30388
30881
|
tag: string;
|
|
30882
|
+
tile: boolean;
|
|
30389
30883
|
ripple: boolean | {
|
|
30390
30884
|
class: string;
|
|
30391
30885
|
} | undefined;
|
|
@@ -30429,6 +30923,7 @@ declare const VExpansionPanel: {
|
|
|
30429
30923
|
static: boolean;
|
|
30430
30924
|
tag: string;
|
|
30431
30925
|
rounded: string | number | boolean;
|
|
30926
|
+
tile: boolean;
|
|
30432
30927
|
ripple: boolean | {
|
|
30433
30928
|
class: string;
|
|
30434
30929
|
} | undefined;
|
|
@@ -30446,6 +30941,7 @@ declare const VExpansionPanel: {
|
|
|
30446
30941
|
readonly: boolean;
|
|
30447
30942
|
static: boolean;
|
|
30448
30943
|
tag: string;
|
|
30944
|
+
tile: boolean;
|
|
30449
30945
|
ripple: boolean | {
|
|
30450
30946
|
class: string;
|
|
30451
30947
|
} | undefined;
|
|
@@ -30493,6 +30989,7 @@ declare const VExpansionPanel: {
|
|
|
30493
30989
|
static: boolean;
|
|
30494
30990
|
tag: string;
|
|
30495
30991
|
rounded: string | number | boolean;
|
|
30992
|
+
tile: boolean;
|
|
30496
30993
|
ripple: boolean | {
|
|
30497
30994
|
class: string;
|
|
30498
30995
|
} | undefined;
|
|
@@ -30541,6 +31038,7 @@ declare const VExpansionPanel: {
|
|
|
30541
31038
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
30542
31039
|
default: undefined;
|
|
30543
31040
|
};
|
|
31041
|
+
tile: BooleanConstructor;
|
|
30544
31042
|
eager: BooleanConstructor;
|
|
30545
31043
|
value: null;
|
|
30546
31044
|
disabled: BooleanConstructor;
|
|
@@ -30584,6 +31082,7 @@ declare const VExpansionPanel: {
|
|
|
30584
31082
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
30585
31083
|
default: undefined;
|
|
30586
31084
|
};
|
|
31085
|
+
tile: BooleanConstructor;
|
|
30587
31086
|
eager: BooleanConstructor;
|
|
30588
31087
|
value: null;
|
|
30589
31088
|
disabled: BooleanConstructor;
|
|
@@ -31030,6 +31529,7 @@ declare const VFileInput: {
|
|
|
31030
31529
|
readonly: boolean | null;
|
|
31031
31530
|
counter: boolean;
|
|
31032
31531
|
messages: string | readonly string[];
|
|
31532
|
+
tile: boolean;
|
|
31033
31533
|
density: Density;
|
|
31034
31534
|
modelValue: File[];
|
|
31035
31535
|
prependIcon: NonNullable<IconValue>;
|
|
@@ -31388,6 +31888,7 @@ declare const VFileInput: {
|
|
|
31388
31888
|
readonly: boolean | null;
|
|
31389
31889
|
counter: boolean;
|
|
31390
31890
|
messages: string | readonly string[];
|
|
31891
|
+
tile: boolean;
|
|
31391
31892
|
density: Density;
|
|
31392
31893
|
modelValue: File[];
|
|
31393
31894
|
prependIcon: NonNullable<IconValue>;
|
|
@@ -31513,6 +32014,7 @@ declare const VFileInput: {
|
|
|
31513
32014
|
counter: boolean;
|
|
31514
32015
|
messages: string | readonly string[];
|
|
31515
32016
|
rounded: string | number | boolean;
|
|
32017
|
+
tile: boolean;
|
|
31516
32018
|
density: Density;
|
|
31517
32019
|
modelValue: File[];
|
|
31518
32020
|
prependIcon: NonNullable<IconValue>;
|
|
@@ -31596,6 +32098,7 @@ declare const VFileInput: {
|
|
|
31596
32098
|
readonly: boolean | null;
|
|
31597
32099
|
counter: boolean;
|
|
31598
32100
|
messages: string | readonly string[];
|
|
32101
|
+
tile: boolean;
|
|
31599
32102
|
density: Density;
|
|
31600
32103
|
modelValue: File[];
|
|
31601
32104
|
prependIcon: NonNullable<IconValue>;
|
|
@@ -31950,6 +32453,7 @@ declare const VFileInput: {
|
|
|
31950
32453
|
counter: boolean;
|
|
31951
32454
|
messages: string | readonly string[];
|
|
31952
32455
|
rounded: string | number | boolean;
|
|
32456
|
+
tile: boolean;
|
|
31953
32457
|
density: Density;
|
|
31954
32458
|
modelValue: File[];
|
|
31955
32459
|
prependIcon: NonNullable<IconValue>;
|
|
@@ -31986,6 +32490,7 @@ declare const VFileInput: {
|
|
|
31986
32490
|
readonly: boolean | null;
|
|
31987
32491
|
counter: boolean;
|
|
31988
32492
|
messages: string | readonly string[];
|
|
32493
|
+
tile: boolean;
|
|
31989
32494
|
density: Density;
|
|
31990
32495
|
modelValue: File[];
|
|
31991
32496
|
prependIcon: NonNullable<IconValue>;
|
|
@@ -32345,6 +32850,7 @@ declare const VFileInput: {
|
|
|
32345
32850
|
counter: boolean;
|
|
32346
32851
|
messages: string | readonly string[];
|
|
32347
32852
|
rounded: string | number | boolean;
|
|
32853
|
+
tile: boolean;
|
|
32348
32854
|
density: Density;
|
|
32349
32855
|
modelValue: File[];
|
|
32350
32856
|
prependIcon: NonNullable<IconValue>;
|
|
@@ -32414,6 +32920,7 @@ declare const VFileInput: {
|
|
|
32414
32920
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
32415
32921
|
default: undefined;
|
|
32416
32922
|
};
|
|
32923
|
+
tile: BooleanConstructor;
|
|
32417
32924
|
loading: (StringConstructor | BooleanConstructor)[];
|
|
32418
32925
|
class: PropType<any>;
|
|
32419
32926
|
style: {
|
|
@@ -32531,6 +33038,7 @@ declare const VFileInput: {
|
|
|
32531
33038
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
32532
33039
|
default: undefined;
|
|
32533
33040
|
};
|
|
33041
|
+
tile: BooleanConstructor;
|
|
32534
33042
|
loading: (StringConstructor | BooleanConstructor)[];
|
|
32535
33043
|
class: PropType<any>;
|
|
32536
33044
|
style: {
|
|
@@ -32653,6 +33161,7 @@ declare const VFooter: {
|
|
|
32653
33161
|
style: vue.StyleValue;
|
|
32654
33162
|
tag: string;
|
|
32655
33163
|
app: boolean;
|
|
33164
|
+
tile: boolean;
|
|
32656
33165
|
} & {
|
|
32657
33166
|
name?: string | undefined;
|
|
32658
33167
|
border?: string | number | boolean | undefined;
|
|
@@ -32677,6 +33186,7 @@ declare const VFooter: {
|
|
|
32677
33186
|
style: vue.StyleValue;
|
|
32678
33187
|
tag: string;
|
|
32679
33188
|
app: boolean;
|
|
33189
|
+
tile: boolean;
|
|
32680
33190
|
} & {
|
|
32681
33191
|
name?: string | undefined;
|
|
32682
33192
|
border?: string | number | boolean | undefined;
|
|
@@ -32702,6 +33212,7 @@ declare const VFooter: {
|
|
|
32702
33212
|
tag: string;
|
|
32703
33213
|
app: boolean;
|
|
32704
33214
|
rounded: string | number | boolean;
|
|
33215
|
+
tile: boolean;
|
|
32705
33216
|
}, true, {}, vue.SlotsType<Partial<{
|
|
32706
33217
|
default: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
32707
33218
|
[key: string]: any;
|
|
@@ -32720,6 +33231,7 @@ declare const VFooter: {
|
|
|
32720
33231
|
style: vue.StyleValue;
|
|
32721
33232
|
tag: string;
|
|
32722
33233
|
app: boolean;
|
|
33234
|
+
tile: boolean;
|
|
32723
33235
|
} & {
|
|
32724
33236
|
name?: string | undefined;
|
|
32725
33237
|
border?: string | number | boolean | undefined;
|
|
@@ -32745,6 +33257,7 @@ declare const VFooter: {
|
|
|
32745
33257
|
tag: string;
|
|
32746
33258
|
app: boolean;
|
|
32747
33259
|
rounded: string | number | boolean;
|
|
33260
|
+
tile: boolean;
|
|
32748
33261
|
}>;
|
|
32749
33262
|
__isFragment?: undefined;
|
|
32750
33263
|
__isTeleport?: undefined;
|
|
@@ -32756,6 +33269,7 @@ declare const VFooter: {
|
|
|
32756
33269
|
style: vue.StyleValue;
|
|
32757
33270
|
tag: string;
|
|
32758
33271
|
app: boolean;
|
|
33272
|
+
tile: boolean;
|
|
32759
33273
|
} & {
|
|
32760
33274
|
name?: string | undefined;
|
|
32761
33275
|
border?: string | number | boolean | undefined;
|
|
@@ -32781,6 +33295,7 @@ declare const VFooter: {
|
|
|
32781
33295
|
tag: string;
|
|
32782
33296
|
app: boolean;
|
|
32783
33297
|
rounded: string | number | boolean;
|
|
33298
|
+
tile: boolean;
|
|
32784
33299
|
}, {}, string, vue.SlotsType<Partial<{
|
|
32785
33300
|
default: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
32786
33301
|
[key: string]: any;
|
|
@@ -32798,6 +33313,7 @@ declare const VFooter: {
|
|
|
32798
33313
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
32799
33314
|
default: undefined;
|
|
32800
33315
|
};
|
|
33316
|
+
tile: BooleanConstructor;
|
|
32801
33317
|
name: {
|
|
32802
33318
|
type: StringConstructor;
|
|
32803
33319
|
};
|
|
@@ -32835,6 +33351,7 @@ declare const VFooter: {
|
|
|
32835
33351
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
32836
33352
|
default: undefined;
|
|
32837
33353
|
};
|
|
33354
|
+
tile: BooleanConstructor;
|
|
32838
33355
|
name: {
|
|
32839
33356
|
type: StringConstructor;
|
|
32840
33357
|
};
|
|
@@ -36296,6 +36813,7 @@ declare const VList: {
|
|
|
36296
36813
|
disabled: boolean;
|
|
36297
36814
|
tag: string;
|
|
36298
36815
|
mandatory: boolean;
|
|
36816
|
+
tile: boolean;
|
|
36299
36817
|
density: Density;
|
|
36300
36818
|
slim: boolean;
|
|
36301
36819
|
valueComparator: typeof deepEqual;
|
|
@@ -36358,6 +36876,7 @@ declare const VList: {
|
|
|
36358
36876
|
disabled: boolean;
|
|
36359
36877
|
tag: string;
|
|
36360
36878
|
mandatory: boolean;
|
|
36879
|
+
tile: boolean;
|
|
36361
36880
|
density: Density;
|
|
36362
36881
|
slim: boolean;
|
|
36363
36882
|
valueComparator: typeof deepEqual;
|
|
@@ -36404,6 +36923,7 @@ declare const VList: {
|
|
|
36404
36923
|
tag: string;
|
|
36405
36924
|
mandatory: boolean;
|
|
36406
36925
|
rounded: string | number | boolean;
|
|
36926
|
+
tile: boolean;
|
|
36407
36927
|
density: Density;
|
|
36408
36928
|
slim: boolean;
|
|
36409
36929
|
valueComparator: typeof deepEqual;
|
|
@@ -36496,6 +37016,7 @@ declare const VList: {
|
|
|
36496
37016
|
disabled: boolean;
|
|
36497
37017
|
tag: string;
|
|
36498
37018
|
mandatory: boolean;
|
|
37019
|
+
tile: boolean;
|
|
36499
37020
|
density: Density;
|
|
36500
37021
|
slim: boolean;
|
|
36501
37022
|
valueComparator: typeof deepEqual;
|
|
@@ -36546,6 +37067,7 @@ declare const VList: {
|
|
|
36546
37067
|
tag: string;
|
|
36547
37068
|
mandatory: boolean;
|
|
36548
37069
|
rounded: string | number | boolean;
|
|
37070
|
+
tile: boolean;
|
|
36549
37071
|
density: Density;
|
|
36550
37072
|
slim: boolean;
|
|
36551
37073
|
valueComparator: typeof deepEqual;
|
|
@@ -36565,6 +37087,7 @@ declare const VList: {
|
|
|
36565
37087
|
disabled: boolean;
|
|
36566
37088
|
tag: string;
|
|
36567
37089
|
mandatory: boolean;
|
|
37090
|
+
tile: boolean;
|
|
36568
37091
|
density: Density;
|
|
36569
37092
|
slim: boolean;
|
|
36570
37093
|
valueComparator: typeof deepEqual;
|
|
@@ -36628,6 +37151,7 @@ declare const VList: {
|
|
|
36628
37151
|
tag: string;
|
|
36629
37152
|
mandatory: boolean;
|
|
36630
37153
|
rounded: string | number | boolean;
|
|
37154
|
+
tile: boolean;
|
|
36631
37155
|
density: Density;
|
|
36632
37156
|
slim: boolean;
|
|
36633
37157
|
valueComparator: typeof deepEqual;
|
|
@@ -36745,6 +37269,7 @@ declare const VList: {
|
|
|
36745
37269
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
36746
37270
|
default: undefined;
|
|
36747
37271
|
};
|
|
37272
|
+
tile: BooleanConstructor;
|
|
36748
37273
|
items: {
|
|
36749
37274
|
type: PropType<any[]>;
|
|
36750
37275
|
default: () => never[];
|
|
@@ -36838,6 +37363,7 @@ declare const VList: {
|
|
|
36838
37363
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
36839
37364
|
default: undefined;
|
|
36840
37365
|
};
|
|
37366
|
+
tile: BooleanConstructor;
|
|
36841
37367
|
items: {
|
|
36842
37368
|
type: PropType<any[]>;
|
|
36843
37369
|
default: () => never[];
|
|
@@ -40167,6 +40693,7 @@ declare const VNavigationDrawer: {
|
|
|
40167
40693
|
temporary: boolean;
|
|
40168
40694
|
tag: string;
|
|
40169
40695
|
sticky: boolean;
|
|
40696
|
+
tile: boolean;
|
|
40170
40697
|
floating: boolean;
|
|
40171
40698
|
modelValue: boolean | null;
|
|
40172
40699
|
scrim: string | boolean;
|
|
@@ -40222,6 +40749,7 @@ declare const VNavigationDrawer: {
|
|
|
40222
40749
|
temporary: boolean;
|
|
40223
40750
|
tag: string;
|
|
40224
40751
|
sticky: boolean;
|
|
40752
|
+
tile: boolean;
|
|
40225
40753
|
floating: boolean;
|
|
40226
40754
|
modelValue: boolean | null;
|
|
40227
40755
|
scrim: string | boolean;
|
|
@@ -40273,6 +40801,7 @@ declare const VNavigationDrawer: {
|
|
|
40273
40801
|
tag: string;
|
|
40274
40802
|
sticky: boolean;
|
|
40275
40803
|
rounded: string | number | boolean;
|
|
40804
|
+
tile: boolean;
|
|
40276
40805
|
floating: boolean;
|
|
40277
40806
|
modelValue: boolean | null;
|
|
40278
40807
|
scrim: string | boolean;
|
|
@@ -40312,6 +40841,7 @@ declare const VNavigationDrawer: {
|
|
|
40312
40841
|
temporary: boolean;
|
|
40313
40842
|
tag: string;
|
|
40314
40843
|
sticky: boolean;
|
|
40844
|
+
tile: boolean;
|
|
40315
40845
|
floating: boolean;
|
|
40316
40846
|
modelValue: boolean | null;
|
|
40317
40847
|
scrim: string | boolean;
|
|
@@ -40365,6 +40895,7 @@ declare const VNavigationDrawer: {
|
|
|
40365
40895
|
tag: string;
|
|
40366
40896
|
sticky: boolean;
|
|
40367
40897
|
rounded: string | number | boolean;
|
|
40898
|
+
tile: boolean;
|
|
40368
40899
|
floating: boolean;
|
|
40369
40900
|
modelValue: boolean | null;
|
|
40370
40901
|
scrim: string | boolean;
|
|
@@ -40388,6 +40919,7 @@ declare const VNavigationDrawer: {
|
|
|
40388
40919
|
temporary: boolean;
|
|
40389
40920
|
tag: string;
|
|
40390
40921
|
sticky: boolean;
|
|
40922
|
+
tile: boolean;
|
|
40391
40923
|
floating: boolean;
|
|
40392
40924
|
modelValue: boolean | null;
|
|
40393
40925
|
scrim: string | boolean;
|
|
@@ -40444,6 +40976,7 @@ declare const VNavigationDrawer: {
|
|
|
40444
40976
|
tag: string;
|
|
40445
40977
|
sticky: boolean;
|
|
40446
40978
|
rounded: string | number | boolean;
|
|
40979
|
+
tile: boolean;
|
|
40447
40980
|
floating: boolean;
|
|
40448
40981
|
modelValue: boolean | null;
|
|
40449
40982
|
scrim: string | boolean;
|
|
@@ -40480,6 +41013,7 @@ declare const VNavigationDrawer: {
|
|
|
40480
41013
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
40481
41014
|
default: undefined;
|
|
40482
41015
|
};
|
|
41016
|
+
tile: BooleanConstructor;
|
|
40483
41017
|
name: {
|
|
40484
41018
|
type: StringConstructor;
|
|
40485
41019
|
};
|
|
@@ -40547,6 +41081,7 @@ declare const VNavigationDrawer: {
|
|
|
40547
41081
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
40548
41082
|
default: undefined;
|
|
40549
41083
|
};
|
|
41084
|
+
tile: BooleanConstructor;
|
|
40550
41085
|
name: {
|
|
40551
41086
|
type: StringConstructor;
|
|
40552
41087
|
};
|
|
@@ -41652,6 +42187,7 @@ declare const VPagination: {
|
|
|
41652
42187
|
size: string | number;
|
|
41653
42188
|
tag: string;
|
|
41654
42189
|
ellipsis: string;
|
|
42190
|
+
tile: boolean;
|
|
41655
42191
|
density: Density;
|
|
41656
42192
|
modelValue: number;
|
|
41657
42193
|
nextIcon: IconValue;
|
|
@@ -41717,6 +42253,7 @@ declare const VPagination: {
|
|
|
41717
42253
|
size: string | number;
|
|
41718
42254
|
tag: string;
|
|
41719
42255
|
ellipsis: string;
|
|
42256
|
+
tile: boolean;
|
|
41720
42257
|
density: Density;
|
|
41721
42258
|
modelValue: number;
|
|
41722
42259
|
nextIcon: IconValue;
|
|
@@ -41777,6 +42314,7 @@ declare const VPagination: {
|
|
|
41777
42314
|
tag: string;
|
|
41778
42315
|
ellipsis: string;
|
|
41779
42316
|
rounded: string | number | boolean;
|
|
42317
|
+
tile: boolean;
|
|
41780
42318
|
density: Density;
|
|
41781
42319
|
modelValue: number;
|
|
41782
42320
|
nextIcon: IconValue;
|
|
@@ -41823,6 +42361,7 @@ declare const VPagination: {
|
|
|
41823
42361
|
size: string | number;
|
|
41824
42362
|
tag: string;
|
|
41825
42363
|
ellipsis: string;
|
|
42364
|
+
tile: boolean;
|
|
41826
42365
|
density: Density;
|
|
41827
42366
|
modelValue: number;
|
|
41828
42367
|
nextIcon: IconValue;
|
|
@@ -41883,6 +42422,7 @@ declare const VPagination: {
|
|
|
41883
42422
|
tag: string;
|
|
41884
42423
|
ellipsis: string;
|
|
41885
42424
|
rounded: string | number | boolean;
|
|
42425
|
+
tile: boolean;
|
|
41886
42426
|
density: Density;
|
|
41887
42427
|
modelValue: number;
|
|
41888
42428
|
nextIcon: IconValue;
|
|
@@ -41910,6 +42450,7 @@ declare const VPagination: {
|
|
|
41910
42450
|
size: string | number;
|
|
41911
42451
|
tag: string;
|
|
41912
42452
|
ellipsis: string;
|
|
42453
|
+
tile: boolean;
|
|
41913
42454
|
density: Density;
|
|
41914
42455
|
modelValue: number;
|
|
41915
42456
|
nextIcon: IconValue;
|
|
@@ -41976,6 +42517,7 @@ declare const VPagination: {
|
|
|
41976
42517
|
tag: string;
|
|
41977
42518
|
ellipsis: string;
|
|
41978
42519
|
rounded: string | number | boolean;
|
|
42520
|
+
tile: boolean;
|
|
41979
42521
|
density: Density;
|
|
41980
42522
|
modelValue: number;
|
|
41981
42523
|
nextIcon: IconValue;
|
|
@@ -42031,6 +42573,7 @@ declare const VPagination: {
|
|
|
42031
42573
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
42032
42574
|
default: undefined;
|
|
42033
42575
|
};
|
|
42576
|
+
tile: BooleanConstructor;
|
|
42034
42577
|
elevation: {
|
|
42035
42578
|
type: (StringConstructor | NumberConstructor)[];
|
|
42036
42579
|
validator(v: any): boolean;
|
|
@@ -42137,6 +42680,7 @@ declare const VPagination: {
|
|
|
42137
42680
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
42138
42681
|
default: undefined;
|
|
42139
42682
|
};
|
|
42683
|
+
tile: BooleanConstructor;
|
|
42140
42684
|
elevation: {
|
|
42141
42685
|
type: (StringConstructor | NumberConstructor)[];
|
|
42142
42686
|
validator(v: any): boolean;
|
|
@@ -42628,6 +43172,7 @@ declare const VProgressLinear: {
|
|
|
42628
43172
|
style: vue.StyleValue;
|
|
42629
43173
|
tag: string;
|
|
42630
43174
|
indeterminate: boolean;
|
|
43175
|
+
tile: boolean;
|
|
42631
43176
|
modelValue: string | number;
|
|
42632
43177
|
bufferValue: string | number;
|
|
42633
43178
|
clickable: boolean;
|
|
@@ -42676,6 +43221,7 @@ declare const VProgressLinear: {
|
|
|
42676
43221
|
style: vue.StyleValue;
|
|
42677
43222
|
tag: string;
|
|
42678
43223
|
indeterminate: boolean;
|
|
43224
|
+
tile: boolean;
|
|
42679
43225
|
modelValue: string | number;
|
|
42680
43226
|
bufferValue: string | number;
|
|
42681
43227
|
clickable: boolean;
|
|
@@ -42723,6 +43269,7 @@ declare const VProgressLinear: {
|
|
|
42723
43269
|
tag: string;
|
|
42724
43270
|
indeterminate: boolean;
|
|
42725
43271
|
rounded: string | number | boolean;
|
|
43272
|
+
tile: boolean;
|
|
42726
43273
|
modelValue: string | number;
|
|
42727
43274
|
bufferValue: string | number;
|
|
42728
43275
|
clickable: boolean;
|
|
@@ -42753,6 +43300,7 @@ declare const VProgressLinear: {
|
|
|
42753
43300
|
style: vue.StyleValue;
|
|
42754
43301
|
tag: string;
|
|
42755
43302
|
indeterminate: boolean;
|
|
43303
|
+
tile: boolean;
|
|
42756
43304
|
modelValue: string | number;
|
|
42757
43305
|
bufferValue: string | number;
|
|
42758
43306
|
clickable: boolean;
|
|
@@ -42800,6 +43348,7 @@ declare const VProgressLinear: {
|
|
|
42800
43348
|
tag: string;
|
|
42801
43349
|
indeterminate: boolean;
|
|
42802
43350
|
rounded: string | number | boolean;
|
|
43351
|
+
tile: boolean;
|
|
42803
43352
|
modelValue: string | number;
|
|
42804
43353
|
bufferValue: string | number;
|
|
42805
43354
|
clickable: boolean;
|
|
@@ -42820,6 +43369,7 @@ declare const VProgressLinear: {
|
|
|
42820
43369
|
style: vue.StyleValue;
|
|
42821
43370
|
tag: string;
|
|
42822
43371
|
indeterminate: boolean;
|
|
43372
|
+
tile: boolean;
|
|
42823
43373
|
modelValue: string | number;
|
|
42824
43374
|
bufferValue: string | number;
|
|
42825
43375
|
clickable: boolean;
|
|
@@ -42869,6 +43419,7 @@ declare const VProgressLinear: {
|
|
|
42869
43419
|
tag: string;
|
|
42870
43420
|
indeterminate: boolean;
|
|
42871
43421
|
rounded: string | number | boolean;
|
|
43422
|
+
tile: boolean;
|
|
42872
43423
|
modelValue: string | number;
|
|
42873
43424
|
bufferValue: string | number;
|
|
42874
43425
|
clickable: boolean;
|
|
@@ -42891,6 +43442,7 @@ declare const VProgressLinear: {
|
|
|
42891
43442
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
42892
43443
|
default: undefined;
|
|
42893
43444
|
};
|
|
43445
|
+
tile: BooleanConstructor;
|
|
42894
43446
|
location: {
|
|
42895
43447
|
type: vue.PropType<NonNullable<Anchor>>;
|
|
42896
43448
|
default: NonNullable<Anchor>;
|
|
@@ -42940,6 +43492,7 @@ declare const VProgressLinear: {
|
|
|
42940
43492
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
42941
43493
|
default: undefined;
|
|
42942
43494
|
};
|
|
43495
|
+
tile: BooleanConstructor;
|
|
42943
43496
|
location: {
|
|
42944
43497
|
type: vue.PropType<NonNullable<Anchor>>;
|
|
42945
43498
|
default: NonNullable<Anchor>;
|
|
@@ -43915,6 +44468,7 @@ declare const VRangeSlider: {
|
|
|
43915
44468
|
step: string | number;
|
|
43916
44469
|
elevation: NonNullable<string | number>;
|
|
43917
44470
|
messages: string | readonly string[];
|
|
44471
|
+
tile: boolean;
|
|
43918
44472
|
density: Density;
|
|
43919
44473
|
modelValue: readonly (string | number)[];
|
|
43920
44474
|
ripple: boolean;
|
|
@@ -44018,6 +44572,7 @@ declare const VRangeSlider: {
|
|
|
44018
44572
|
step: string | number;
|
|
44019
44573
|
elevation: NonNullable<string | number>;
|
|
44020
44574
|
messages: string | readonly string[];
|
|
44575
|
+
tile: boolean;
|
|
44021
44576
|
density: Density;
|
|
44022
44577
|
modelValue: readonly (string | number)[];
|
|
44023
44578
|
ripple: boolean;
|
|
@@ -44117,6 +44672,7 @@ declare const VRangeSlider: {
|
|
|
44117
44672
|
elevation: NonNullable<string | number>;
|
|
44118
44673
|
messages: string | readonly string[];
|
|
44119
44674
|
rounded: string | number | boolean;
|
|
44675
|
+
tile: boolean;
|
|
44120
44676
|
density: Density;
|
|
44121
44677
|
modelValue: readonly (string | number)[];
|
|
44122
44678
|
ripple: boolean;
|
|
@@ -44182,6 +44738,7 @@ declare const VRangeSlider: {
|
|
|
44182
44738
|
step: string | number;
|
|
44183
44739
|
elevation: NonNullable<string | number>;
|
|
44184
44740
|
messages: string | readonly string[];
|
|
44741
|
+
tile: boolean;
|
|
44185
44742
|
density: Density;
|
|
44186
44743
|
modelValue: readonly (string | number)[];
|
|
44187
44744
|
ripple: boolean;
|
|
@@ -44281,6 +44838,7 @@ declare const VRangeSlider: {
|
|
|
44281
44838
|
elevation: NonNullable<string | number>;
|
|
44282
44839
|
messages: string | readonly string[];
|
|
44283
44840
|
rounded: string | number | boolean;
|
|
44841
|
+
tile: boolean;
|
|
44284
44842
|
density: Density;
|
|
44285
44843
|
modelValue: readonly (string | number)[];
|
|
44286
44844
|
ripple: boolean;
|
|
@@ -44313,6 +44871,7 @@ declare const VRangeSlider: {
|
|
|
44313
44871
|
step: string | number;
|
|
44314
44872
|
elevation: NonNullable<string | number>;
|
|
44315
44873
|
messages: string | readonly string[];
|
|
44874
|
+
tile: boolean;
|
|
44316
44875
|
density: Density;
|
|
44317
44876
|
modelValue: readonly (string | number)[];
|
|
44318
44877
|
ripple: boolean;
|
|
@@ -44417,6 +44976,7 @@ declare const VRangeSlider: {
|
|
|
44417
44976
|
elevation: NonNullable<string | number>;
|
|
44418
44977
|
messages: string | readonly string[];
|
|
44419
44978
|
rounded: string | number | boolean;
|
|
44979
|
+
tile: boolean;
|
|
44420
44980
|
density: Density;
|
|
44421
44981
|
modelValue: readonly (string | number)[];
|
|
44422
44982
|
ripple: boolean;
|
|
@@ -44483,6 +45043,7 @@ declare const VRangeSlider: {
|
|
|
44483
45043
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
44484
45044
|
default: undefined;
|
|
44485
45045
|
};
|
|
45046
|
+
tile: BooleanConstructor;
|
|
44486
45047
|
disabled: {
|
|
44487
45048
|
type: PropType<boolean | null>;
|
|
44488
45049
|
default: null;
|
|
@@ -44605,6 +45166,7 @@ declare const VRangeSlider: {
|
|
|
44605
45166
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
44606
45167
|
default: undefined;
|
|
44607
45168
|
};
|
|
45169
|
+
tile: BooleanConstructor;
|
|
44608
45170
|
disabled: {
|
|
44609
45171
|
type: PropType<boolean | null>;
|
|
44610
45172
|
default: null;
|
|
@@ -45265,6 +45827,7 @@ declare const VSelect: {
|
|
|
45265
45827
|
readonly: boolean | null;
|
|
45266
45828
|
noDataText: string;
|
|
45267
45829
|
messages: string | readonly string[];
|
|
45830
|
+
tile: boolean;
|
|
45268
45831
|
density: Density;
|
|
45269
45832
|
valueComparator: typeof deepEqual;
|
|
45270
45833
|
clearIcon: IconValue;
|
|
@@ -45326,6 +45889,7 @@ declare const VSelect: {
|
|
|
45326
45889
|
tag: string;
|
|
45327
45890
|
mandatory: boolean;
|
|
45328
45891
|
rounded: string | number | boolean;
|
|
45892
|
+
tile: boolean;
|
|
45329
45893
|
density: Density;
|
|
45330
45894
|
slim: boolean;
|
|
45331
45895
|
valueComparator: typeof deepEqual;
|
|
@@ -45341,6 +45905,7 @@ declare const VSelect: {
|
|
|
45341
45905
|
disabled: boolean;
|
|
45342
45906
|
tag: string;
|
|
45343
45907
|
mandatory: boolean;
|
|
45908
|
+
tile: boolean;
|
|
45344
45909
|
density: Density;
|
|
45345
45910
|
slim: boolean;
|
|
45346
45911
|
valueComparator: typeof deepEqual;
|
|
@@ -45384,6 +45949,7 @@ declare const VSelect: {
|
|
|
45384
45949
|
disabled: boolean;
|
|
45385
45950
|
tag: string;
|
|
45386
45951
|
mandatory: boolean;
|
|
45952
|
+
tile: boolean;
|
|
45387
45953
|
density: Density;
|
|
45388
45954
|
slim: boolean;
|
|
45389
45955
|
valueComparator: typeof deepEqual;
|
|
@@ -45422,7 +45988,7 @@ declare const VSelect: {
|
|
|
45422
45988
|
value: boolean;
|
|
45423
45989
|
path: unknown[];
|
|
45424
45990
|
}) => any) | undefined;
|
|
45425
|
-
}, "variant" | "nav" | "style" | "disabled" | "tag" | "mandatory" | "rounded" | "density" | "slim" | "valueComparator" | "selectStrategy" | "openStrategy" | "lines" | "returnObject" | "itemType"> & {
|
|
45991
|
+
}, "variant" | "nav" | "style" | "disabled" | "tag" | "mandatory" | "rounded" | "tile" | "density" | "slim" | "valueComparator" | "selectStrategy" | "openStrategy" | "lines" | "returnObject" | "itemType"> & {
|
|
45426
45992
|
items?: readonly any[] | undefined;
|
|
45427
45993
|
itemTitle?: SelectItemKey<any>;
|
|
45428
45994
|
itemValue?: SelectItemKey<any>;
|
|
@@ -45802,6 +46368,7 @@ declare const VSelect: {
|
|
|
45802
46368
|
readonly: boolean | null;
|
|
45803
46369
|
noDataText: string;
|
|
45804
46370
|
messages: string | readonly string[];
|
|
46371
|
+
tile: boolean;
|
|
45805
46372
|
density: Density;
|
|
45806
46373
|
valueComparator: typeof deepEqual;
|
|
45807
46374
|
clearIcon: IconValue;
|
|
@@ -45863,6 +46430,7 @@ declare const VSelect: {
|
|
|
45863
46430
|
tag: string;
|
|
45864
46431
|
mandatory: boolean;
|
|
45865
46432
|
rounded: string | number | boolean;
|
|
46433
|
+
tile: boolean;
|
|
45866
46434
|
density: Density;
|
|
45867
46435
|
slim: boolean;
|
|
45868
46436
|
valueComparator: typeof deepEqual;
|
|
@@ -45878,6 +46446,7 @@ declare const VSelect: {
|
|
|
45878
46446
|
disabled: boolean;
|
|
45879
46447
|
tag: string;
|
|
45880
46448
|
mandatory: boolean;
|
|
46449
|
+
tile: boolean;
|
|
45881
46450
|
density: Density;
|
|
45882
46451
|
slim: boolean;
|
|
45883
46452
|
valueComparator: typeof deepEqual;
|
|
@@ -45921,6 +46490,7 @@ declare const VSelect: {
|
|
|
45921
46490
|
disabled: boolean;
|
|
45922
46491
|
tag: string;
|
|
45923
46492
|
mandatory: boolean;
|
|
46493
|
+
tile: boolean;
|
|
45924
46494
|
density: Density;
|
|
45925
46495
|
slim: boolean;
|
|
45926
46496
|
valueComparator: typeof deepEqual;
|
|
@@ -45959,7 +46529,7 @@ declare const VSelect: {
|
|
|
45959
46529
|
value: boolean;
|
|
45960
46530
|
path: unknown[];
|
|
45961
46531
|
}) => any) | undefined;
|
|
45962
|
-
}, "variant" | "nav" | "style" | "disabled" | "tag" | "mandatory" | "rounded" | "density" | "slim" | "valueComparator" | "selectStrategy" | "openStrategy" | "lines" | "returnObject" | "itemType"> & {
|
|
46532
|
+
}, "variant" | "nav" | "style" | "disabled" | "tag" | "mandatory" | "rounded" | "tile" | "density" | "slim" | "valueComparator" | "selectStrategy" | "openStrategy" | "lines" | "returnObject" | "itemType"> & {
|
|
45963
46533
|
items?: readonly any[] | undefined;
|
|
45964
46534
|
itemTitle?: SelectItemKey<any>;
|
|
45965
46535
|
itemValue?: SelectItemKey<any>;
|
|
@@ -46336,6 +46906,7 @@ declare const VSelect: {
|
|
|
46336
46906
|
noDataText: string;
|
|
46337
46907
|
messages: string | readonly string[];
|
|
46338
46908
|
rounded: string | number | boolean;
|
|
46909
|
+
tile: boolean;
|
|
46339
46910
|
density: Density;
|
|
46340
46911
|
valueComparator: typeof deepEqual;
|
|
46341
46912
|
clearIcon: IconValue;
|
|
@@ -46449,6 +47020,7 @@ declare const VSelect: {
|
|
|
46449
47020
|
readonly: boolean | null;
|
|
46450
47021
|
noDataText: string;
|
|
46451
47022
|
messages: string | readonly string[];
|
|
47023
|
+
tile: boolean;
|
|
46452
47024
|
density: Density;
|
|
46453
47025
|
valueComparator: typeof deepEqual;
|
|
46454
47026
|
clearIcon: IconValue;
|
|
@@ -46510,6 +47082,7 @@ declare const VSelect: {
|
|
|
46510
47082
|
tag: string;
|
|
46511
47083
|
mandatory: boolean;
|
|
46512
47084
|
rounded: string | number | boolean;
|
|
47085
|
+
tile: boolean;
|
|
46513
47086
|
density: Density;
|
|
46514
47087
|
slim: boolean;
|
|
46515
47088
|
valueComparator: typeof deepEqual;
|
|
@@ -46525,6 +47098,7 @@ declare const VSelect: {
|
|
|
46525
47098
|
disabled: boolean;
|
|
46526
47099
|
tag: string;
|
|
46527
47100
|
mandatory: boolean;
|
|
47101
|
+
tile: boolean;
|
|
46528
47102
|
density: Density;
|
|
46529
47103
|
slim: boolean;
|
|
46530
47104
|
valueComparator: typeof deepEqual;
|
|
@@ -46568,6 +47142,7 @@ declare const VSelect: {
|
|
|
46568
47142
|
disabled: boolean;
|
|
46569
47143
|
tag: string;
|
|
46570
47144
|
mandatory: boolean;
|
|
47145
|
+
tile: boolean;
|
|
46571
47146
|
density: Density;
|
|
46572
47147
|
slim: boolean;
|
|
46573
47148
|
valueComparator: typeof deepEqual;
|
|
@@ -46606,7 +47181,7 @@ declare const VSelect: {
|
|
|
46606
47181
|
value: boolean;
|
|
46607
47182
|
path: unknown[];
|
|
46608
47183
|
}) => any) | undefined;
|
|
46609
|
-
}, "variant" | "nav" | "style" | "disabled" | "tag" | "mandatory" | "rounded" | "density" | "slim" | "valueComparator" | "selectStrategy" | "openStrategy" | "lines" | "returnObject" | "itemType"> & {
|
|
47184
|
+
}, "variant" | "nav" | "style" | "disabled" | "tag" | "mandatory" | "rounded" | "tile" | "density" | "slim" | "valueComparator" | "selectStrategy" | "openStrategy" | "lines" | "returnObject" | "itemType"> & {
|
|
46610
47185
|
items?: readonly any[] | undefined;
|
|
46611
47186
|
itemTitle?: SelectItemKey<any>;
|
|
46612
47187
|
itemValue?: SelectItemKey<any>;
|
|
@@ -46983,6 +47558,7 @@ declare const VSelect: {
|
|
|
46983
47558
|
noDataText: string;
|
|
46984
47559
|
messages: string | readonly string[];
|
|
46985
47560
|
rounded: string | number | boolean;
|
|
47561
|
+
tile: boolean;
|
|
46986
47562
|
density: Density;
|
|
46987
47563
|
valueComparator: typeof deepEqual;
|
|
46988
47564
|
clearIcon: IconValue;
|
|
@@ -47033,6 +47609,7 @@ declare const VSelect: {
|
|
|
47033
47609
|
readonly: boolean | null;
|
|
47034
47610
|
noDataText: string;
|
|
47035
47611
|
messages: string | readonly string[];
|
|
47612
|
+
tile: boolean;
|
|
47036
47613
|
density: Density;
|
|
47037
47614
|
valueComparator: typeof deepEqual;
|
|
47038
47615
|
clearIcon: IconValue;
|
|
@@ -47094,6 +47671,7 @@ declare const VSelect: {
|
|
|
47094
47671
|
tag: string;
|
|
47095
47672
|
mandatory: boolean;
|
|
47096
47673
|
rounded: string | number | boolean;
|
|
47674
|
+
tile: boolean;
|
|
47097
47675
|
density: Density;
|
|
47098
47676
|
slim: boolean;
|
|
47099
47677
|
valueComparator: typeof deepEqual;
|
|
@@ -47109,6 +47687,7 @@ declare const VSelect: {
|
|
|
47109
47687
|
disabled: boolean;
|
|
47110
47688
|
tag: string;
|
|
47111
47689
|
mandatory: boolean;
|
|
47690
|
+
tile: boolean;
|
|
47112
47691
|
density: Density;
|
|
47113
47692
|
slim: boolean;
|
|
47114
47693
|
valueComparator: typeof deepEqual;
|
|
@@ -47152,6 +47731,7 @@ declare const VSelect: {
|
|
|
47152
47731
|
disabled: boolean;
|
|
47153
47732
|
tag: string;
|
|
47154
47733
|
mandatory: boolean;
|
|
47734
|
+
tile: boolean;
|
|
47155
47735
|
density: Density;
|
|
47156
47736
|
slim: boolean;
|
|
47157
47737
|
valueComparator: typeof deepEqual;
|
|
@@ -47190,7 +47770,7 @@ declare const VSelect: {
|
|
|
47190
47770
|
value: boolean;
|
|
47191
47771
|
path: unknown[];
|
|
47192
47772
|
}) => any) | undefined;
|
|
47193
|
-
}, "variant" | "nav" | "style" | "disabled" | "tag" | "mandatory" | "rounded" | "density" | "slim" | "valueComparator" | "selectStrategy" | "openStrategy" | "lines" | "returnObject" | "itemType"> & {
|
|
47773
|
+
}, "variant" | "nav" | "style" | "disabled" | "tag" | "mandatory" | "rounded" | "tile" | "density" | "slim" | "valueComparator" | "selectStrategy" | "openStrategy" | "lines" | "returnObject" | "itemType"> & {
|
|
47194
47774
|
items?: readonly any[] | undefined;
|
|
47195
47775
|
itemTitle?: SelectItemKey<any>;
|
|
47196
47776
|
itemValue?: SelectItemKey<any>;
|
|
@@ -47571,6 +48151,7 @@ declare const VSelect: {
|
|
|
47571
48151
|
noDataText: string;
|
|
47572
48152
|
messages: string | readonly string[];
|
|
47573
48153
|
rounded: string | number | boolean;
|
|
48154
|
+
tile: boolean;
|
|
47574
48155
|
density: Density;
|
|
47575
48156
|
valueComparator: typeof deepEqual;
|
|
47576
48157
|
clearIcon: IconValue;
|
|
@@ -47781,6 +48362,7 @@ declare const VSelect: {
|
|
|
47781
48362
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
47782
48363
|
default: undefined;
|
|
47783
48364
|
};
|
|
48365
|
+
tile: BooleanConstructor;
|
|
47784
48366
|
density: {
|
|
47785
48367
|
type: PropType<Density>;
|
|
47786
48368
|
default: string;
|
|
@@ -47885,6 +48467,7 @@ declare const VSelect: {
|
|
|
47885
48467
|
tag: string;
|
|
47886
48468
|
mandatory: boolean;
|
|
47887
48469
|
rounded: string | number | boolean;
|
|
48470
|
+
tile: boolean;
|
|
47888
48471
|
density: Density;
|
|
47889
48472
|
slim: boolean;
|
|
47890
48473
|
valueComparator: typeof deepEqual;
|
|
@@ -47900,6 +48483,7 @@ declare const VSelect: {
|
|
|
47900
48483
|
disabled: boolean;
|
|
47901
48484
|
tag: string;
|
|
47902
48485
|
mandatory: boolean;
|
|
48486
|
+
tile: boolean;
|
|
47903
48487
|
density: Density;
|
|
47904
48488
|
slim: boolean;
|
|
47905
48489
|
valueComparator: typeof deepEqual;
|
|
@@ -47943,6 +48527,7 @@ declare const VSelect: {
|
|
|
47943
48527
|
disabled: boolean;
|
|
47944
48528
|
tag: string;
|
|
47945
48529
|
mandatory: boolean;
|
|
48530
|
+
tile: boolean;
|
|
47946
48531
|
density: Density;
|
|
47947
48532
|
slim: boolean;
|
|
47948
48533
|
valueComparator: typeof deepEqual;
|
|
@@ -47981,7 +48566,7 @@ declare const VSelect: {
|
|
|
47981
48566
|
value: boolean;
|
|
47982
48567
|
path: unknown[];
|
|
47983
48568
|
}) => any) | undefined;
|
|
47984
|
-
}, "variant" | "nav" | "style" | "disabled" | "tag" | "mandatory" | "rounded" | "density" | "slim" | "valueComparator" | "selectStrategy" | "openStrategy" | "lines" | "returnObject" | "itemType"> & {
|
|
48569
|
+
}, "variant" | "nav" | "style" | "disabled" | "tag" | "mandatory" | "rounded" | "tile" | "density" | "slim" | "valueComparator" | "selectStrategy" | "openStrategy" | "lines" | "returnObject" | "itemType"> & {
|
|
47985
48570
|
items?: readonly any[] | undefined;
|
|
47986
48571
|
itemTitle?: SelectItemKey<any>;
|
|
47987
48572
|
itemValue?: SelectItemKey<any>;
|
|
@@ -48418,6 +49003,7 @@ declare const VSelect: {
|
|
|
48418
49003
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
48419
49004
|
default: undefined;
|
|
48420
49005
|
};
|
|
49006
|
+
tile: BooleanConstructor;
|
|
48421
49007
|
density: {
|
|
48422
49008
|
type: PropType<Density>;
|
|
48423
49009
|
default: string;
|
|
@@ -48522,6 +49108,7 @@ declare const VSelect: {
|
|
|
48522
49108
|
tag: string;
|
|
48523
49109
|
mandatory: boolean;
|
|
48524
49110
|
rounded: string | number | boolean;
|
|
49111
|
+
tile: boolean;
|
|
48525
49112
|
density: Density;
|
|
48526
49113
|
slim: boolean;
|
|
48527
49114
|
valueComparator: typeof deepEqual;
|
|
@@ -48537,6 +49124,7 @@ declare const VSelect: {
|
|
|
48537
49124
|
disabled: boolean;
|
|
48538
49125
|
tag: string;
|
|
48539
49126
|
mandatory: boolean;
|
|
49127
|
+
tile: boolean;
|
|
48540
49128
|
density: Density;
|
|
48541
49129
|
slim: boolean;
|
|
48542
49130
|
valueComparator: typeof deepEqual;
|
|
@@ -48580,6 +49168,7 @@ declare const VSelect: {
|
|
|
48580
49168
|
disabled: boolean;
|
|
48581
49169
|
tag: string;
|
|
48582
49170
|
mandatory: boolean;
|
|
49171
|
+
tile: boolean;
|
|
48583
49172
|
density: Density;
|
|
48584
49173
|
slim: boolean;
|
|
48585
49174
|
valueComparator: typeof deepEqual;
|
|
@@ -48618,7 +49207,7 @@ declare const VSelect: {
|
|
|
48618
49207
|
value: boolean;
|
|
48619
49208
|
path: unknown[];
|
|
48620
49209
|
}) => any) | undefined;
|
|
48621
|
-
}, "variant" | "nav" | "style" | "disabled" | "tag" | "mandatory" | "rounded" | "density" | "slim" | "valueComparator" | "selectStrategy" | "openStrategy" | "lines" | "returnObject" | "itemType"> & {
|
|
49210
|
+
}, "variant" | "nav" | "style" | "disabled" | "tag" | "mandatory" | "rounded" | "tile" | "density" | "slim" | "valueComparator" | "selectStrategy" | "openStrategy" | "lines" | "returnObject" | "itemType"> & {
|
|
48622
49211
|
items?: readonly any[] | undefined;
|
|
48623
49212
|
itemTitle?: SelectItemKey<any>;
|
|
48624
49213
|
itemValue?: SelectItemKey<any>;
|
|
@@ -48990,6 +49579,7 @@ declare const VSheet: {
|
|
|
48990
49579
|
new (...args: any[]): vue.CreateComponentPublicInstance<{
|
|
48991
49580
|
style: vue.StyleValue;
|
|
48992
49581
|
tag: string;
|
|
49582
|
+
tile: boolean;
|
|
48993
49583
|
} & {
|
|
48994
49584
|
location?: Anchor | undefined;
|
|
48995
49585
|
height?: string | number | undefined;
|
|
@@ -49017,6 +49607,7 @@ declare const VSheet: {
|
|
|
49017
49607
|
}, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Record<string, any>, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
|
49018
49608
|
style: vue.StyleValue;
|
|
49019
49609
|
tag: string;
|
|
49610
|
+
tile: boolean;
|
|
49020
49611
|
} & {
|
|
49021
49612
|
location?: Anchor | undefined;
|
|
49022
49613
|
height?: string | number | undefined;
|
|
@@ -49045,6 +49636,7 @@ declare const VSheet: {
|
|
|
49045
49636
|
style: vue.StyleValue;
|
|
49046
49637
|
tag: string;
|
|
49047
49638
|
rounded: string | number | boolean;
|
|
49639
|
+
tile: boolean;
|
|
49048
49640
|
}, true, {}, vue.SlotsType<Partial<{
|
|
49049
49641
|
default: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
49050
49642
|
[key: string]: any;
|
|
@@ -49059,6 +49651,7 @@ declare const VSheet: {
|
|
|
49059
49651
|
}, {
|
|
49060
49652
|
style: vue.StyleValue;
|
|
49061
49653
|
tag: string;
|
|
49654
|
+
tile: boolean;
|
|
49062
49655
|
} & {
|
|
49063
49656
|
location?: Anchor | undefined;
|
|
49064
49657
|
height?: string | number | undefined;
|
|
@@ -49087,6 +49680,7 @@ declare const VSheet: {
|
|
|
49087
49680
|
style: vue.StyleValue;
|
|
49088
49681
|
tag: string;
|
|
49089
49682
|
rounded: string | number | boolean;
|
|
49683
|
+
tile: boolean;
|
|
49090
49684
|
}>;
|
|
49091
49685
|
__isFragment?: undefined;
|
|
49092
49686
|
__isTeleport?: undefined;
|
|
@@ -49094,6 +49688,7 @@ declare const VSheet: {
|
|
|
49094
49688
|
} & vue.ComponentOptionsBase<{
|
|
49095
49689
|
style: vue.StyleValue;
|
|
49096
49690
|
tag: string;
|
|
49691
|
+
tile: boolean;
|
|
49097
49692
|
} & {
|
|
49098
49693
|
location?: Anchor | undefined;
|
|
49099
49694
|
height?: string | number | undefined;
|
|
@@ -49122,6 +49717,7 @@ declare const VSheet: {
|
|
|
49122
49717
|
style: vue.StyleValue;
|
|
49123
49718
|
tag: string;
|
|
49124
49719
|
rounded: string | number | boolean;
|
|
49720
|
+
tile: boolean;
|
|
49125
49721
|
}, {}, string, vue.SlotsType<Partial<{
|
|
49126
49722
|
default: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
49127
49723
|
[key: string]: any;
|
|
@@ -49136,6 +49732,7 @@ declare const VSheet: {
|
|
|
49136
49732
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
49137
49733
|
default: undefined;
|
|
49138
49734
|
};
|
|
49735
|
+
tile: BooleanConstructor;
|
|
49139
49736
|
position: {
|
|
49140
49737
|
type: vue.PropType<"fixed" | "absolute" | "static" | "sticky" | "relative">;
|
|
49141
49738
|
validator: (v: any) => boolean;
|
|
@@ -49168,6 +49765,7 @@ declare const VSheet: {
|
|
|
49168
49765
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
49169
49766
|
default: undefined;
|
|
49170
49767
|
};
|
|
49768
|
+
tile: BooleanConstructor;
|
|
49171
49769
|
position: {
|
|
49172
49770
|
type: vue.PropType<"fixed" | "absolute" | "static" | "sticky" | "relative">;
|
|
49173
49771
|
validator: (v: any) => boolean;
|
|
@@ -49859,6 +50457,7 @@ declare const VSlider: {
|
|
|
49859
50457
|
step: string | number;
|
|
49860
50458
|
elevation: NonNullable<string | number>;
|
|
49861
50459
|
messages: string | readonly string[];
|
|
50460
|
+
tile: boolean;
|
|
49862
50461
|
density: Density;
|
|
49863
50462
|
modelValue: string | number;
|
|
49864
50463
|
ripple: boolean;
|
|
@@ -49961,6 +50560,7 @@ declare const VSlider: {
|
|
|
49961
50560
|
step: string | number;
|
|
49962
50561
|
elevation: NonNullable<string | number>;
|
|
49963
50562
|
messages: string | readonly string[];
|
|
50563
|
+
tile: boolean;
|
|
49964
50564
|
density: Density;
|
|
49965
50565
|
modelValue: string | number;
|
|
49966
50566
|
ripple: boolean;
|
|
@@ -50059,6 +50659,7 @@ declare const VSlider: {
|
|
|
50059
50659
|
elevation: NonNullable<string | number>;
|
|
50060
50660
|
messages: string | readonly string[];
|
|
50061
50661
|
rounded: string | number | boolean;
|
|
50662
|
+
tile: boolean;
|
|
50062
50663
|
density: Density;
|
|
50063
50664
|
modelValue: string | number;
|
|
50064
50665
|
ripple: boolean;
|
|
@@ -50123,6 +50724,7 @@ declare const VSlider: {
|
|
|
50123
50724
|
step: string | number;
|
|
50124
50725
|
elevation: NonNullable<string | number>;
|
|
50125
50726
|
messages: string | readonly string[];
|
|
50727
|
+
tile: boolean;
|
|
50126
50728
|
density: Density;
|
|
50127
50729
|
modelValue: string | number;
|
|
50128
50730
|
ripple: boolean;
|
|
@@ -50221,6 +50823,7 @@ declare const VSlider: {
|
|
|
50221
50823
|
elevation: NonNullable<string | number>;
|
|
50222
50824
|
messages: string | readonly string[];
|
|
50223
50825
|
rounded: string | number | boolean;
|
|
50826
|
+
tile: boolean;
|
|
50224
50827
|
density: Density;
|
|
50225
50828
|
modelValue: string | number;
|
|
50226
50829
|
ripple: boolean;
|
|
@@ -50252,6 +50855,7 @@ declare const VSlider: {
|
|
|
50252
50855
|
step: string | number;
|
|
50253
50856
|
elevation: NonNullable<string | number>;
|
|
50254
50857
|
messages: string | readonly string[];
|
|
50858
|
+
tile: boolean;
|
|
50255
50859
|
density: Density;
|
|
50256
50860
|
modelValue: string | number;
|
|
50257
50861
|
ripple: boolean;
|
|
@@ -50355,6 +50959,7 @@ declare const VSlider: {
|
|
|
50355
50959
|
elevation: NonNullable<string | number>;
|
|
50356
50960
|
messages: string | readonly string[];
|
|
50357
50961
|
rounded: string | number | boolean;
|
|
50962
|
+
tile: boolean;
|
|
50358
50963
|
density: Density;
|
|
50359
50964
|
modelValue: string | number;
|
|
50360
50965
|
ripple: boolean;
|
|
@@ -50479,6 +51084,7 @@ declare const VSlider: {
|
|
|
50479
51084
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
50480
51085
|
default: undefined;
|
|
50481
51086
|
};
|
|
51087
|
+
tile: BooleanConstructor;
|
|
50482
51088
|
max: {
|
|
50483
51089
|
type: (StringConstructor | NumberConstructor)[];
|
|
50484
51090
|
default: number;
|
|
@@ -50600,6 +51206,7 @@ declare const VSlider: {
|
|
|
50600
51206
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
50601
51207
|
default: undefined;
|
|
50602
51208
|
};
|
|
51209
|
+
tile: BooleanConstructor;
|
|
50603
51210
|
max: {
|
|
50604
51211
|
type: (StringConstructor | NumberConstructor)[];
|
|
50605
51212
|
default: number;
|
|
@@ -50660,6 +51267,7 @@ declare const VSnackbar: {
|
|
|
50660
51267
|
disabled: boolean;
|
|
50661
51268
|
timeout: string | number;
|
|
50662
51269
|
vertical: boolean;
|
|
51270
|
+
tile: boolean;
|
|
50663
51271
|
modelValue: boolean;
|
|
50664
51272
|
locationStrategy: "connected" | "static" | ((data: LocationStrategyData, props: StrategyProps, contentStyles: vue.Ref<Record<string, string>>) => {
|
|
50665
51273
|
updateLocation: (e: Event) => void;
|
|
@@ -51181,6 +51789,7 @@ declare const VSnackbar: {
|
|
|
51181
51789
|
disabled: boolean;
|
|
51182
51790
|
timeout: string | number;
|
|
51183
51791
|
vertical: boolean;
|
|
51792
|
+
tile: boolean;
|
|
51184
51793
|
modelValue: boolean;
|
|
51185
51794
|
locationStrategy: "connected" | "static" | ((data: LocationStrategyData, props: StrategyProps, contentStyles: vue.Ref<Record<string, string>>) => {
|
|
51186
51795
|
updateLocation: (e: Event) => void;
|
|
@@ -51260,6 +51869,7 @@ declare const VSnackbar: {
|
|
|
51260
51869
|
timeout: string | number;
|
|
51261
51870
|
vertical: boolean;
|
|
51262
51871
|
rounded: string | number | boolean;
|
|
51872
|
+
tile: boolean;
|
|
51263
51873
|
modelValue: boolean;
|
|
51264
51874
|
locationStrategy: "connected" | "static" | ((data: LocationStrategyData, props: StrategyProps, contentStyles: vue.Ref<Record<string, string>>) => {
|
|
51265
51875
|
updateLocation: (e: Event) => void;
|
|
@@ -51309,6 +51919,7 @@ declare const VSnackbar: {
|
|
|
51309
51919
|
disabled: boolean;
|
|
51310
51920
|
timeout: string | number;
|
|
51311
51921
|
vertical: boolean;
|
|
51922
|
+
tile: boolean;
|
|
51312
51923
|
modelValue: boolean;
|
|
51313
51924
|
locationStrategy: "connected" | "static" | ((data: LocationStrategyData, props: StrategyProps, contentStyles: vue.Ref<Record<string, string>>) => {
|
|
51314
51925
|
updateLocation: (e: Event) => void;
|
|
@@ -51829,6 +52440,7 @@ declare const VSnackbar: {
|
|
|
51829
52440
|
timeout: string | number;
|
|
51830
52441
|
vertical: boolean;
|
|
51831
52442
|
rounded: string | number | boolean;
|
|
52443
|
+
tile: boolean;
|
|
51832
52444
|
modelValue: boolean;
|
|
51833
52445
|
locationStrategy: "connected" | "static" | ((data: LocationStrategyData, props: StrategyProps, contentStyles: vue.Ref<Record<string, string>>) => {
|
|
51834
52446
|
updateLocation: (e: Event) => void;
|
|
@@ -51859,6 +52471,7 @@ declare const VSnackbar: {
|
|
|
51859
52471
|
disabled: boolean;
|
|
51860
52472
|
timeout: string | number;
|
|
51861
52473
|
vertical: boolean;
|
|
52474
|
+
tile: boolean;
|
|
51862
52475
|
modelValue: boolean;
|
|
51863
52476
|
locationStrategy: "connected" | "static" | ((data: LocationStrategyData, props: StrategyProps, contentStyles: vue.Ref<Record<string, string>>) => {
|
|
51864
52477
|
updateLocation: (e: Event) => void;
|
|
@@ -52381,6 +52994,7 @@ declare const VSnackbar: {
|
|
|
52381
52994
|
timeout: string | number;
|
|
52382
52995
|
vertical: boolean;
|
|
52383
52996
|
rounded: string | number | boolean;
|
|
52997
|
+
tile: boolean;
|
|
52384
52998
|
modelValue: boolean;
|
|
52385
52999
|
locationStrategy: "connected" | "static" | ((data: LocationStrategyData, props: StrategyProps, contentStyles: vue.Ref<Record<string, string>>) => {
|
|
52386
53000
|
updateLocation: (e: Event) => void;
|
|
@@ -52497,6 +53111,7 @@ declare const VSnackbar: {
|
|
|
52497
53111
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
52498
53112
|
default: undefined;
|
|
52499
53113
|
};
|
|
53114
|
+
tile: BooleanConstructor;
|
|
52500
53115
|
position: {
|
|
52501
53116
|
type: vue.PropType<"fixed" | "absolute" | "static" | "sticky" | "relative">;
|
|
52502
53117
|
validator: (v: any) => boolean;
|
|
@@ -52597,6 +53212,7 @@ declare const VSnackbar: {
|
|
|
52597
53212
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
52598
53213
|
default: undefined;
|
|
52599
53214
|
};
|
|
53215
|
+
tile: BooleanConstructor;
|
|
52600
53216
|
position: {
|
|
52601
53217
|
type: vue.PropType<"fixed" | "absolute" | "static" | "sticky" | "relative">;
|
|
52602
53218
|
validator: (v: any) => boolean;
|
|
@@ -52951,6 +53567,7 @@ declare const VStepper: {
|
|
|
52951
53567
|
tag: string;
|
|
52952
53568
|
mandatory: NonNullable<boolean | "force">;
|
|
52953
53569
|
items: readonly StepperItem[];
|
|
53570
|
+
tile: boolean;
|
|
52954
53571
|
selectedClass: string;
|
|
52955
53572
|
itemTitle: string;
|
|
52956
53573
|
itemValue: string;
|
|
@@ -53036,6 +53653,7 @@ declare const VStepper: {
|
|
|
53036
53653
|
tag: string;
|
|
53037
53654
|
mandatory: NonNullable<boolean | "force">;
|
|
53038
53655
|
items: readonly StepperItem[];
|
|
53656
|
+
tile: boolean;
|
|
53039
53657
|
selectedClass: string;
|
|
53040
53658
|
itemTitle: string;
|
|
53041
53659
|
itemValue: string;
|
|
@@ -53117,6 +53735,7 @@ declare const VStepper: {
|
|
|
53117
53735
|
mandatory: NonNullable<boolean | "force">;
|
|
53118
53736
|
items: readonly StepperItem[];
|
|
53119
53737
|
rounded: string | number | boolean;
|
|
53738
|
+
tile: boolean;
|
|
53120
53739
|
modelValue: any;
|
|
53121
53740
|
selectedClass: string;
|
|
53122
53741
|
itemTitle: string;
|
|
@@ -53180,6 +53799,7 @@ declare const VStepper: {
|
|
|
53180
53799
|
tag: string;
|
|
53181
53800
|
mandatory: NonNullable<boolean | "force">;
|
|
53182
53801
|
items: readonly StepperItem[];
|
|
53802
|
+
tile: boolean;
|
|
53183
53803
|
selectedClass: string;
|
|
53184
53804
|
itemTitle: string;
|
|
53185
53805
|
itemValue: string;
|
|
@@ -53264,6 +53884,7 @@ declare const VStepper: {
|
|
|
53264
53884
|
mandatory: NonNullable<boolean | "force">;
|
|
53265
53885
|
items: readonly StepperItem[];
|
|
53266
53886
|
rounded: string | number | boolean;
|
|
53887
|
+
tile: boolean;
|
|
53267
53888
|
modelValue: any;
|
|
53268
53889
|
selectedClass: string;
|
|
53269
53890
|
itemTitle: string;
|
|
@@ -53287,6 +53908,7 @@ declare const VStepper: {
|
|
|
53287
53908
|
tag: string;
|
|
53288
53909
|
mandatory: NonNullable<boolean | "force">;
|
|
53289
53910
|
items: readonly StepperItem[];
|
|
53911
|
+
tile: boolean;
|
|
53290
53912
|
selectedClass: string;
|
|
53291
53913
|
itemTitle: string;
|
|
53292
53914
|
itemValue: string;
|
|
@@ -53373,6 +53995,7 @@ declare const VStepper: {
|
|
|
53373
53995
|
mandatory: NonNullable<boolean | "force">;
|
|
53374
53996
|
items: readonly StepperItem[];
|
|
53375
53997
|
rounded: string | number | boolean;
|
|
53998
|
+
tile: boolean;
|
|
53376
53999
|
modelValue: any;
|
|
53377
54000
|
selectedClass: string;
|
|
53378
54001
|
itemTitle: string;
|
|
@@ -53438,6 +54061,7 @@ declare const VStepper: {
|
|
|
53438
54061
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
53439
54062
|
default: undefined;
|
|
53440
54063
|
};
|
|
54064
|
+
tile: BooleanConstructor;
|
|
53441
54065
|
position: {
|
|
53442
54066
|
type: PropType<"fixed" | "absolute" | "static" | "sticky" | "relative">;
|
|
53443
54067
|
validator: (v: any) => boolean;
|
|
@@ -53512,6 +54136,7 @@ declare const VStepper: {
|
|
|
53512
54136
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
53513
54137
|
default: undefined;
|
|
53514
54138
|
};
|
|
54139
|
+
tile: BooleanConstructor;
|
|
53515
54140
|
position: {
|
|
53516
54141
|
type: PropType<"fixed" | "absolute" | "static" | "sticky" | "relative">;
|
|
53517
54142
|
validator: (v: any) => boolean;
|
|
@@ -54872,6 +55497,7 @@ declare const VSystemBar: {
|
|
|
54872
55497
|
order: string | number;
|
|
54873
55498
|
style: vue.StyleValue;
|
|
54874
55499
|
tag: string;
|
|
55500
|
+
tile: boolean;
|
|
54875
55501
|
} & {
|
|
54876
55502
|
height?: string | number | undefined;
|
|
54877
55503
|
name?: string | undefined;
|
|
@@ -54895,6 +55521,7 @@ declare const VSystemBar: {
|
|
|
54895
55521
|
order: string | number;
|
|
54896
55522
|
style: vue.StyleValue;
|
|
54897
55523
|
tag: string;
|
|
55524
|
+
tile: boolean;
|
|
54898
55525
|
} & {
|
|
54899
55526
|
height?: string | number | undefined;
|
|
54900
55527
|
name?: string | undefined;
|
|
@@ -54919,6 +55546,7 @@ declare const VSystemBar: {
|
|
|
54919
55546
|
style: vue.StyleValue;
|
|
54920
55547
|
tag: string;
|
|
54921
55548
|
rounded: string | number | boolean;
|
|
55549
|
+
tile: boolean;
|
|
54922
55550
|
}, true, {}, vue.SlotsType<Partial<{
|
|
54923
55551
|
default: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
54924
55552
|
[key: string]: any;
|
|
@@ -54936,6 +55564,7 @@ declare const VSystemBar: {
|
|
|
54936
55564
|
order: string | number;
|
|
54937
55565
|
style: vue.StyleValue;
|
|
54938
55566
|
tag: string;
|
|
55567
|
+
tile: boolean;
|
|
54939
55568
|
} & {
|
|
54940
55569
|
height?: string | number | undefined;
|
|
54941
55570
|
name?: string | undefined;
|
|
@@ -54960,6 +55589,7 @@ declare const VSystemBar: {
|
|
|
54960
55589
|
style: vue.StyleValue;
|
|
54961
55590
|
tag: string;
|
|
54962
55591
|
rounded: string | number | boolean;
|
|
55592
|
+
tile: boolean;
|
|
54963
55593
|
}>;
|
|
54964
55594
|
__isFragment?: undefined;
|
|
54965
55595
|
__isTeleport?: undefined;
|
|
@@ -54970,6 +55600,7 @@ declare const VSystemBar: {
|
|
|
54970
55600
|
order: string | number;
|
|
54971
55601
|
style: vue.StyleValue;
|
|
54972
55602
|
tag: string;
|
|
55603
|
+
tile: boolean;
|
|
54973
55604
|
} & {
|
|
54974
55605
|
height?: string | number | undefined;
|
|
54975
55606
|
name?: string | undefined;
|
|
@@ -54994,6 +55625,7 @@ declare const VSystemBar: {
|
|
|
54994
55625
|
style: vue.StyleValue;
|
|
54995
55626
|
tag: string;
|
|
54996
55627
|
rounded: string | number | boolean;
|
|
55628
|
+
tile: boolean;
|
|
54997
55629
|
}, {}, string, vue.SlotsType<Partial<{
|
|
54998
55630
|
default: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
54999
55631
|
[key: string]: any;
|
|
@@ -55008,6 +55640,7 @@ declare const VSystemBar: {
|
|
|
55008
55640
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
55009
55641
|
default: undefined;
|
|
55010
55642
|
};
|
|
55643
|
+
tile: BooleanConstructor;
|
|
55011
55644
|
name: {
|
|
55012
55645
|
type: StringConstructor;
|
|
55013
55646
|
};
|
|
@@ -55038,6 +55671,7 @@ declare const VSystemBar: {
|
|
|
55038
55671
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
55039
55672
|
default: undefined;
|
|
55040
55673
|
};
|
|
55674
|
+
tile: BooleanConstructor;
|
|
55041
55675
|
name: {
|
|
55042
55676
|
type: StringConstructor;
|
|
55043
55677
|
};
|
|
@@ -55465,6 +56099,7 @@ declare const VTab: {
|
|
|
55465
56099
|
disabled: boolean;
|
|
55466
56100
|
size: string | number;
|
|
55467
56101
|
tag: string;
|
|
56102
|
+
tile: boolean;
|
|
55468
56103
|
density: Density;
|
|
55469
56104
|
selectedClass: string;
|
|
55470
56105
|
slim: boolean;
|
|
@@ -55529,6 +56164,7 @@ declare const VTab: {
|
|
|
55529
56164
|
size: string | number;
|
|
55530
56165
|
tag: string;
|
|
55531
56166
|
rounded: string | number | boolean;
|
|
56167
|
+
tile: boolean;
|
|
55532
56168
|
density: Density;
|
|
55533
56169
|
slim: boolean;
|
|
55534
56170
|
stacked: boolean;
|
|
@@ -55546,6 +56182,7 @@ declare const VTab: {
|
|
|
55546
56182
|
disabled: boolean;
|
|
55547
56183
|
size: string | number;
|
|
55548
56184
|
tag: string;
|
|
56185
|
+
tile: boolean;
|
|
55549
56186
|
density: Density;
|
|
55550
56187
|
slim: boolean;
|
|
55551
56188
|
stacked: boolean;
|
|
@@ -55606,6 +56243,7 @@ declare const VTab: {
|
|
|
55606
56243
|
disabled: boolean;
|
|
55607
56244
|
size: string | number;
|
|
55608
56245
|
tag: string;
|
|
56246
|
+
tile: boolean;
|
|
55609
56247
|
density: Density;
|
|
55610
56248
|
slim: boolean;
|
|
55611
56249
|
stacked: boolean;
|
|
@@ -55659,7 +56297,7 @@ declare const VTab: {
|
|
|
55659
56297
|
"onGroup:selected"?: ((val: {
|
|
55660
56298
|
value: boolean;
|
|
55661
56299
|
}) => any) | undefined;
|
|
55662
|
-
}, "symbol" | "replace" | "flat" | "variant" | "exact" | "block" | "active" | "style" | "disabled" | "size" | "tag" | "rounded" | "density" | "slim" | "stacked" | "ripple">;
|
|
56300
|
+
}, "symbol" | "replace" | "flat" | "variant" | "exact" | "block" | "active" | "style" | "disabled" | "size" | "tag" | "rounded" | "tile" | "density" | "slim" | "stacked" | "ripple">;
|
|
55663
56301
|
$attrs: {
|
|
55664
56302
|
[x: string]: unknown;
|
|
55665
56303
|
};
|
|
@@ -55697,6 +56335,7 @@ declare const VTab: {
|
|
|
55697
56335
|
disabled: boolean;
|
|
55698
56336
|
size: string | number;
|
|
55699
56337
|
tag: string;
|
|
56338
|
+
tile: boolean;
|
|
55700
56339
|
density: Density;
|
|
55701
56340
|
slim: boolean;
|
|
55702
56341
|
stacked: boolean;
|
|
@@ -55769,6 +56408,7 @@ declare const VTab: {
|
|
|
55769
56408
|
size: string | number;
|
|
55770
56409
|
tag: string;
|
|
55771
56410
|
rounded: string | number | boolean;
|
|
56411
|
+
tile: boolean;
|
|
55772
56412
|
density: Density;
|
|
55773
56413
|
slim: boolean;
|
|
55774
56414
|
stacked: boolean;
|
|
@@ -55819,6 +56459,7 @@ declare const VTab: {
|
|
|
55819
56459
|
disabled: boolean;
|
|
55820
56460
|
size: string | number;
|
|
55821
56461
|
tag: string;
|
|
56462
|
+
tile: boolean;
|
|
55822
56463
|
density: Density;
|
|
55823
56464
|
slim: boolean;
|
|
55824
56465
|
stacked: boolean;
|
|
@@ -55874,7 +56515,7 @@ declare const VTab: {
|
|
|
55874
56515
|
}) => any) | undefined;
|
|
55875
56516
|
}, "group"> & vue.ShallowUnwrapRef<{
|
|
55876
56517
|
group: GroupItemProvide | null;
|
|
55877
|
-
}> & {} & 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 & {
|
|
56518
|
+
}> & {} & 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 & {
|
|
55878
56519
|
replace: boolean;
|
|
55879
56520
|
fixed: boolean;
|
|
55880
56521
|
variant: NonNullable<NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">>;
|
|
@@ -55884,6 +56525,7 @@ declare const VTab: {
|
|
|
55884
56525
|
disabled: boolean;
|
|
55885
56526
|
size: string | number;
|
|
55886
56527
|
tag: string;
|
|
56528
|
+
tile: boolean;
|
|
55887
56529
|
density: Density;
|
|
55888
56530
|
selectedClass: string;
|
|
55889
56531
|
slim: boolean;
|
|
@@ -55943,6 +56585,7 @@ declare const VTab: {
|
|
|
55943
56585
|
size: string | number;
|
|
55944
56586
|
tag: string;
|
|
55945
56587
|
rounded: string | number | boolean;
|
|
56588
|
+
tile: boolean;
|
|
55946
56589
|
density: Density;
|
|
55947
56590
|
selectedClass: string;
|
|
55948
56591
|
slim: boolean;
|
|
@@ -55981,6 +56624,7 @@ declare const VTab: {
|
|
|
55981
56624
|
disabled: boolean;
|
|
55982
56625
|
size: string | number;
|
|
55983
56626
|
tag: string;
|
|
56627
|
+
tile: boolean;
|
|
55984
56628
|
density: Density;
|
|
55985
56629
|
selectedClass: string;
|
|
55986
56630
|
slim: boolean;
|
|
@@ -56045,6 +56689,7 @@ declare const VTab: {
|
|
|
56045
56689
|
size: string | number;
|
|
56046
56690
|
tag: string;
|
|
56047
56691
|
rounded: string | number | boolean;
|
|
56692
|
+
tile: boolean;
|
|
56048
56693
|
density: Density;
|
|
56049
56694
|
slim: boolean;
|
|
56050
56695
|
stacked: boolean;
|
|
@@ -56062,6 +56707,7 @@ declare const VTab: {
|
|
|
56062
56707
|
disabled: boolean;
|
|
56063
56708
|
size: string | number;
|
|
56064
56709
|
tag: string;
|
|
56710
|
+
tile: boolean;
|
|
56065
56711
|
density: Density;
|
|
56066
56712
|
slim: boolean;
|
|
56067
56713
|
stacked: boolean;
|
|
@@ -56122,6 +56768,7 @@ declare const VTab: {
|
|
|
56122
56768
|
disabled: boolean;
|
|
56123
56769
|
size: string | number;
|
|
56124
56770
|
tag: string;
|
|
56771
|
+
tile: boolean;
|
|
56125
56772
|
density: Density;
|
|
56126
56773
|
slim: boolean;
|
|
56127
56774
|
stacked: boolean;
|
|
@@ -56175,7 +56822,7 @@ declare const VTab: {
|
|
|
56175
56822
|
"onGroup:selected"?: ((val: {
|
|
56176
56823
|
value: boolean;
|
|
56177
56824
|
}) => any) | undefined;
|
|
56178
|
-
}, "symbol" | "replace" | "flat" | "variant" | "exact" | "block" | "active" | "style" | "disabled" | "size" | "tag" | "rounded" | "density" | "slim" | "stacked" | "ripple">;
|
|
56825
|
+
}, "symbol" | "replace" | "flat" | "variant" | "exact" | "block" | "active" | "style" | "disabled" | "size" | "tag" | "rounded" | "tile" | "density" | "slim" | "stacked" | "ripple">;
|
|
56179
56826
|
$attrs: {
|
|
56180
56827
|
[x: string]: unknown;
|
|
56181
56828
|
};
|
|
@@ -56213,6 +56860,7 @@ declare const VTab: {
|
|
|
56213
56860
|
disabled: boolean;
|
|
56214
56861
|
size: string | number;
|
|
56215
56862
|
tag: string;
|
|
56863
|
+
tile: boolean;
|
|
56216
56864
|
density: Density;
|
|
56217
56865
|
slim: boolean;
|
|
56218
56866
|
stacked: boolean;
|
|
@@ -56285,6 +56933,7 @@ declare const VTab: {
|
|
|
56285
56933
|
size: string | number;
|
|
56286
56934
|
tag: string;
|
|
56287
56935
|
rounded: string | number | boolean;
|
|
56936
|
+
tile: boolean;
|
|
56288
56937
|
density: Density;
|
|
56289
56938
|
slim: boolean;
|
|
56290
56939
|
stacked: boolean;
|
|
@@ -56335,6 +56984,7 @@ declare const VTab: {
|
|
|
56335
56984
|
disabled: boolean;
|
|
56336
56985
|
size: string | number;
|
|
56337
56986
|
tag: string;
|
|
56987
|
+
tile: boolean;
|
|
56338
56988
|
density: Density;
|
|
56339
56989
|
slim: boolean;
|
|
56340
56990
|
stacked: boolean;
|
|
@@ -56390,7 +57040,7 @@ declare const VTab: {
|
|
|
56390
57040
|
}) => any) | undefined;
|
|
56391
57041
|
}, "group"> & vue.ShallowUnwrapRef<{
|
|
56392
57042
|
group: GroupItemProvide | null;
|
|
56393
|
-
}> & {} & 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}`>, {}, {}, {}, {
|
|
57043
|
+
}> & {} & 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}`>, {}, {}, {}, {
|
|
56394
57044
|
replace: boolean;
|
|
56395
57045
|
fixed: boolean;
|
|
56396
57046
|
variant: NonNullable<NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">>;
|
|
@@ -56401,6 +57051,7 @@ declare const VTab: {
|
|
|
56401
57051
|
size: string | number;
|
|
56402
57052
|
tag: string;
|
|
56403
57053
|
rounded: string | number | boolean;
|
|
57054
|
+
tile: boolean;
|
|
56404
57055
|
density: Density;
|
|
56405
57056
|
selectedClass: string;
|
|
56406
57057
|
slim: boolean;
|
|
@@ -56423,6 +57074,7 @@ declare const VTab: {
|
|
|
56423
57074
|
disabled: boolean;
|
|
56424
57075
|
size: string | number;
|
|
56425
57076
|
tag: string;
|
|
57077
|
+
tile: boolean;
|
|
56426
57078
|
density: Density;
|
|
56427
57079
|
selectedClass: string;
|
|
56428
57080
|
slim: boolean;
|
|
@@ -56487,6 +57139,7 @@ declare const VTab: {
|
|
|
56487
57139
|
size: string | number;
|
|
56488
57140
|
tag: string;
|
|
56489
57141
|
rounded: string | number | boolean;
|
|
57142
|
+
tile: boolean;
|
|
56490
57143
|
density: Density;
|
|
56491
57144
|
slim: boolean;
|
|
56492
57145
|
stacked: boolean;
|
|
@@ -56504,6 +57157,7 @@ declare const VTab: {
|
|
|
56504
57157
|
disabled: boolean;
|
|
56505
57158
|
size: string | number;
|
|
56506
57159
|
tag: string;
|
|
57160
|
+
tile: boolean;
|
|
56507
57161
|
density: Density;
|
|
56508
57162
|
slim: boolean;
|
|
56509
57163
|
stacked: boolean;
|
|
@@ -56564,6 +57218,7 @@ declare const VTab: {
|
|
|
56564
57218
|
disabled: boolean;
|
|
56565
57219
|
size: string | number;
|
|
56566
57220
|
tag: string;
|
|
57221
|
+
tile: boolean;
|
|
56567
57222
|
density: Density;
|
|
56568
57223
|
slim: boolean;
|
|
56569
57224
|
stacked: boolean;
|
|
@@ -56617,7 +57272,7 @@ declare const VTab: {
|
|
|
56617
57272
|
"onGroup:selected"?: ((val: {
|
|
56618
57273
|
value: boolean;
|
|
56619
57274
|
}) => any) | undefined;
|
|
56620
|
-
}, "symbol" | "replace" | "flat" | "variant" | "exact" | "block" | "active" | "style" | "disabled" | "size" | "tag" | "rounded" | "density" | "slim" | "stacked" | "ripple">;
|
|
57275
|
+
}, "symbol" | "replace" | "flat" | "variant" | "exact" | "block" | "active" | "style" | "disabled" | "size" | "tag" | "rounded" | "tile" | "density" | "slim" | "stacked" | "ripple">;
|
|
56621
57276
|
$attrs: {
|
|
56622
57277
|
[x: string]: unknown;
|
|
56623
57278
|
};
|
|
@@ -56655,6 +57310,7 @@ declare const VTab: {
|
|
|
56655
57310
|
disabled: boolean;
|
|
56656
57311
|
size: string | number;
|
|
56657
57312
|
tag: string;
|
|
57313
|
+
tile: boolean;
|
|
56658
57314
|
density: Density;
|
|
56659
57315
|
slim: boolean;
|
|
56660
57316
|
stacked: boolean;
|
|
@@ -56727,6 +57383,7 @@ declare const VTab: {
|
|
|
56727
57383
|
size: string | number;
|
|
56728
57384
|
tag: string;
|
|
56729
57385
|
rounded: string | number | boolean;
|
|
57386
|
+
tile: boolean;
|
|
56730
57387
|
density: Density;
|
|
56731
57388
|
slim: boolean;
|
|
56732
57389
|
stacked: boolean;
|
|
@@ -56777,6 +57434,7 @@ declare const VTab: {
|
|
|
56777
57434
|
disabled: boolean;
|
|
56778
57435
|
size: string | number;
|
|
56779
57436
|
tag: string;
|
|
57437
|
+
tile: boolean;
|
|
56780
57438
|
density: Density;
|
|
56781
57439
|
slim: boolean;
|
|
56782
57440
|
stacked: boolean;
|
|
@@ -56832,7 +57490,7 @@ declare const VTab: {
|
|
|
56832
57490
|
}) => any) | undefined;
|
|
56833
57491
|
}, "group"> & vue.ShallowUnwrapRef<{
|
|
56834
57492
|
group: GroupItemProvide | null;
|
|
56835
|
-
}> & {} & 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, {
|
|
57493
|
+
}> & {} & 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, {
|
|
56836
57494
|
replace: boolean;
|
|
56837
57495
|
fixed: boolean;
|
|
56838
57496
|
variant: NonNullable<NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">>;
|
|
@@ -56843,6 +57501,7 @@ declare const VTab: {
|
|
|
56843
57501
|
size: string | number;
|
|
56844
57502
|
tag: string;
|
|
56845
57503
|
rounded: string | number | boolean;
|
|
57504
|
+
tile: boolean;
|
|
56846
57505
|
density: Density;
|
|
56847
57506
|
selectedClass: string;
|
|
56848
57507
|
slim: boolean;
|
|
@@ -56918,6 +57577,7 @@ declare const VTab: {
|
|
|
56918
57577
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
56919
57578
|
default: undefined;
|
|
56920
57579
|
};
|
|
57580
|
+
tile: BooleanConstructor;
|
|
56921
57581
|
density: {
|
|
56922
57582
|
type: PropType<Density>;
|
|
56923
57583
|
default: string;
|
|
@@ -56998,6 +57658,7 @@ declare const VTab: {
|
|
|
56998
57658
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
56999
57659
|
default: undefined;
|
|
57000
57660
|
};
|
|
57661
|
+
tile: BooleanConstructor;
|
|
57001
57662
|
density: {
|
|
57002
57663
|
type: PropType<Density>;
|
|
57003
57664
|
default: string;
|
|
@@ -57258,6 +57919,7 @@ declare const VTextarea: {
|
|
|
57258
57919
|
disabled: boolean;
|
|
57259
57920
|
readonly: boolean | null;
|
|
57260
57921
|
messages: string | readonly string[];
|
|
57922
|
+
tile: boolean;
|
|
57261
57923
|
density: Density;
|
|
57262
57924
|
clearIcon: IconValue;
|
|
57263
57925
|
focused: boolean;
|
|
@@ -57605,6 +58267,7 @@ declare const VTextarea: {
|
|
|
57605
58267
|
disabled: boolean;
|
|
57606
58268
|
readonly: boolean | null;
|
|
57607
58269
|
messages: string | readonly string[];
|
|
58270
|
+
tile: boolean;
|
|
57608
58271
|
density: Density;
|
|
57609
58272
|
clearIcon: IconValue;
|
|
57610
58273
|
focused: boolean;
|
|
@@ -57719,6 +58382,7 @@ declare const VTextarea: {
|
|
|
57719
58382
|
readonly: boolean | null;
|
|
57720
58383
|
messages: string | readonly string[];
|
|
57721
58384
|
rounded: string | number | boolean;
|
|
58385
|
+
tile: boolean;
|
|
57722
58386
|
density: Density;
|
|
57723
58387
|
clearIcon: IconValue;
|
|
57724
58388
|
focused: boolean;
|
|
@@ -57790,6 +58454,7 @@ declare const VTextarea: {
|
|
|
57790
58454
|
disabled: boolean;
|
|
57791
58455
|
readonly: boolean | null;
|
|
57792
58456
|
messages: string | readonly string[];
|
|
58457
|
+
tile: boolean;
|
|
57793
58458
|
density: Density;
|
|
57794
58459
|
clearIcon: IconValue;
|
|
57795
58460
|
focused: boolean;
|
|
@@ -58133,6 +58798,7 @@ declare const VTextarea: {
|
|
|
58133
58798
|
readonly: boolean | null;
|
|
58134
58799
|
messages: string | readonly string[];
|
|
58135
58800
|
rounded: string | number | boolean;
|
|
58801
|
+
tile: boolean;
|
|
58136
58802
|
density: Density;
|
|
58137
58803
|
clearIcon: IconValue;
|
|
58138
58804
|
focused: boolean;
|
|
@@ -58167,6 +58833,7 @@ declare const VTextarea: {
|
|
|
58167
58833
|
disabled: boolean;
|
|
58168
58834
|
readonly: boolean | null;
|
|
58169
58835
|
messages: string | readonly string[];
|
|
58836
|
+
tile: boolean;
|
|
58170
58837
|
density: Density;
|
|
58171
58838
|
clearIcon: IconValue;
|
|
58172
58839
|
focused: boolean;
|
|
@@ -58515,6 +59182,7 @@ declare const VTextarea: {
|
|
|
58515
59182
|
readonly: boolean | null;
|
|
58516
59183
|
messages: string | readonly string[];
|
|
58517
59184
|
rounded: string | number | boolean;
|
|
59185
|
+
tile: boolean;
|
|
58518
59186
|
density: Density;
|
|
58519
59187
|
clearIcon: IconValue;
|
|
58520
59188
|
focused: boolean;
|
|
@@ -58573,6 +59241,7 @@ declare const VTextarea: {
|
|
|
58573
59241
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
58574
59242
|
default: undefined;
|
|
58575
59243
|
};
|
|
59244
|
+
tile: BooleanConstructor;
|
|
58576
59245
|
loading: (StringConstructor | BooleanConstructor)[];
|
|
58577
59246
|
class: PropType<any>;
|
|
58578
59247
|
style: {
|
|
@@ -58684,6 +59353,7 @@ declare const VTextarea: {
|
|
|
58684
59353
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
58685
59354
|
default: undefined;
|
|
58686
59355
|
};
|
|
59356
|
+
tile: BooleanConstructor;
|
|
58687
59357
|
loading: (StringConstructor | BooleanConstructor)[];
|
|
58688
59358
|
class: PropType<any>;
|
|
58689
59359
|
style: {
|
|
@@ -58806,6 +59476,7 @@ declare const VTextField: {
|
|
|
58806
59476
|
disabled: boolean;
|
|
58807
59477
|
readonly: boolean | null;
|
|
58808
59478
|
messages: string | readonly string[];
|
|
59479
|
+
tile: boolean;
|
|
58809
59480
|
density: Density;
|
|
58810
59481
|
clearIcon: IconValue;
|
|
58811
59482
|
focused: boolean;
|
|
@@ -59148,6 +59819,7 @@ declare const VTextField: {
|
|
|
59148
59819
|
style: vue.StyleValue;
|
|
59149
59820
|
disabled: boolean;
|
|
59150
59821
|
rounded: string | number | boolean;
|
|
59822
|
+
tile: boolean;
|
|
59151
59823
|
clearIcon: IconValue;
|
|
59152
59824
|
focused: boolean;
|
|
59153
59825
|
centerAffix: boolean;
|
|
@@ -59163,6 +59835,7 @@ declare const VTextField: {
|
|
|
59163
59835
|
active: boolean;
|
|
59164
59836
|
style: vue.StyleValue;
|
|
59165
59837
|
disabled: boolean;
|
|
59838
|
+
tile: boolean;
|
|
59166
59839
|
clearIcon: IconValue;
|
|
59167
59840
|
focused: boolean;
|
|
59168
59841
|
clearable: boolean;
|
|
@@ -59193,6 +59866,7 @@ declare const VTextField: {
|
|
|
59193
59866
|
active: boolean;
|
|
59194
59867
|
style: vue.StyleValue;
|
|
59195
59868
|
disabled: boolean;
|
|
59869
|
+
tile: boolean;
|
|
59196
59870
|
clearIcon: IconValue;
|
|
59197
59871
|
focused: boolean;
|
|
59198
59872
|
clearable: boolean;
|
|
@@ -59218,7 +59892,7 @@ declare const VTextField: {
|
|
|
59218
59892
|
centerAffix?: boolean | undefined;
|
|
59219
59893
|
} & {
|
|
59220
59894
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
59221
|
-
}, "flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "rounded" | "clearIcon" | "focused" | "centerAffix" | "clearable" | "dirty" | "persistentClear" | "singleLine">;
|
|
59895
|
+
}, "flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "rounded" | "tile" | "clearIcon" | "focused" | "centerAffix" | "clearable" | "dirty" | "persistentClear" | "singleLine">;
|
|
59222
59896
|
$attrs: {
|
|
59223
59897
|
[x: string]: unknown;
|
|
59224
59898
|
};
|
|
@@ -59260,6 +59934,7 @@ declare const VTextField: {
|
|
|
59260
59934
|
active: boolean;
|
|
59261
59935
|
style: vue.StyleValue;
|
|
59262
59936
|
disabled: boolean;
|
|
59937
|
+
tile: boolean;
|
|
59263
59938
|
clearIcon: IconValue;
|
|
59264
59939
|
focused: boolean;
|
|
59265
59940
|
clearable: boolean;
|
|
@@ -59299,6 +59974,7 @@ declare const VTextField: {
|
|
|
59299
59974
|
style: vue.StyleValue;
|
|
59300
59975
|
disabled: boolean;
|
|
59301
59976
|
rounded: string | number | boolean;
|
|
59977
|
+
tile: boolean;
|
|
59302
59978
|
clearIcon: IconValue;
|
|
59303
59979
|
focused: boolean;
|
|
59304
59980
|
centerAffix: boolean;
|
|
@@ -59356,6 +60032,7 @@ declare const VTextField: {
|
|
|
59356
60032
|
active: boolean;
|
|
59357
60033
|
style: vue.StyleValue;
|
|
59358
60034
|
disabled: boolean;
|
|
60035
|
+
tile: boolean;
|
|
59359
60036
|
clearIcon: IconValue;
|
|
59360
60037
|
focused: boolean;
|
|
59361
60038
|
clearable: boolean;
|
|
@@ -59386,7 +60063,7 @@ declare const VTextField: {
|
|
|
59386
60063
|
}> & {} & vue.ComponentCustomProperties & {} & GenericProps<{
|
|
59387
60064
|
modelValue?: unknown;
|
|
59388
60065
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
|
59389
|
-
}, 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, {
|
|
60066
|
+
}, 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, {
|
|
59390
60067
|
'click:control': (e: MouseEvent) => true;
|
|
59391
60068
|
'mousedown:control': (e: MouseEvent) => true;
|
|
59392
60069
|
'update:focused': (focused: boolean) => true;
|
|
@@ -59404,6 +60081,7 @@ declare const VTextField: {
|
|
|
59404
60081
|
disabled: boolean;
|
|
59405
60082
|
readonly: boolean | null;
|
|
59406
60083
|
messages: string | readonly string[];
|
|
60084
|
+
tile: boolean;
|
|
59407
60085
|
density: Density;
|
|
59408
60086
|
clearIcon: IconValue;
|
|
59409
60087
|
focused: boolean;
|
|
@@ -59519,6 +60197,7 @@ declare const VTextField: {
|
|
|
59519
60197
|
readonly: boolean | null;
|
|
59520
60198
|
messages: string | readonly string[];
|
|
59521
60199
|
rounded: string | number | boolean;
|
|
60200
|
+
tile: boolean;
|
|
59522
60201
|
density: Density;
|
|
59523
60202
|
clearIcon: IconValue;
|
|
59524
60203
|
focused: boolean;
|
|
@@ -59591,6 +60270,7 @@ declare const VTextField: {
|
|
|
59591
60270
|
disabled: boolean;
|
|
59592
60271
|
readonly: boolean | null;
|
|
59593
60272
|
messages: string | readonly string[];
|
|
60273
|
+
tile: boolean;
|
|
59594
60274
|
density: Density;
|
|
59595
60275
|
clearIcon: IconValue;
|
|
59596
60276
|
focused: boolean;
|
|
@@ -59933,6 +60613,7 @@ declare const VTextField: {
|
|
|
59933
60613
|
style: vue.StyleValue;
|
|
59934
60614
|
disabled: boolean;
|
|
59935
60615
|
rounded: string | number | boolean;
|
|
60616
|
+
tile: boolean;
|
|
59936
60617
|
clearIcon: IconValue;
|
|
59937
60618
|
focused: boolean;
|
|
59938
60619
|
centerAffix: boolean;
|
|
@@ -59948,6 +60629,7 @@ declare const VTextField: {
|
|
|
59948
60629
|
active: boolean;
|
|
59949
60630
|
style: vue.StyleValue;
|
|
59950
60631
|
disabled: boolean;
|
|
60632
|
+
tile: boolean;
|
|
59951
60633
|
clearIcon: IconValue;
|
|
59952
60634
|
focused: boolean;
|
|
59953
60635
|
clearable: boolean;
|
|
@@ -59978,6 +60660,7 @@ declare const VTextField: {
|
|
|
59978
60660
|
active: boolean;
|
|
59979
60661
|
style: vue.StyleValue;
|
|
59980
60662
|
disabled: boolean;
|
|
60663
|
+
tile: boolean;
|
|
59981
60664
|
clearIcon: IconValue;
|
|
59982
60665
|
focused: boolean;
|
|
59983
60666
|
clearable: boolean;
|
|
@@ -60003,7 +60686,7 @@ declare const VTextField: {
|
|
|
60003
60686
|
centerAffix?: boolean | undefined;
|
|
60004
60687
|
} & {
|
|
60005
60688
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
60006
|
-
}, "flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "rounded" | "clearIcon" | "focused" | "centerAffix" | "clearable" | "dirty" | "persistentClear" | "singleLine">;
|
|
60689
|
+
}, "flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "rounded" | "tile" | "clearIcon" | "focused" | "centerAffix" | "clearable" | "dirty" | "persistentClear" | "singleLine">;
|
|
60007
60690
|
$attrs: {
|
|
60008
60691
|
[x: string]: unknown;
|
|
60009
60692
|
};
|
|
@@ -60045,6 +60728,7 @@ declare const VTextField: {
|
|
|
60045
60728
|
active: boolean;
|
|
60046
60729
|
style: vue.StyleValue;
|
|
60047
60730
|
disabled: boolean;
|
|
60731
|
+
tile: boolean;
|
|
60048
60732
|
clearIcon: IconValue;
|
|
60049
60733
|
focused: boolean;
|
|
60050
60734
|
clearable: boolean;
|
|
@@ -60084,6 +60768,7 @@ declare const VTextField: {
|
|
|
60084
60768
|
style: vue.StyleValue;
|
|
60085
60769
|
disabled: boolean;
|
|
60086
60770
|
rounded: string | number | boolean;
|
|
60771
|
+
tile: boolean;
|
|
60087
60772
|
clearIcon: IconValue;
|
|
60088
60773
|
focused: boolean;
|
|
60089
60774
|
centerAffix: boolean;
|
|
@@ -60141,6 +60826,7 @@ declare const VTextField: {
|
|
|
60141
60826
|
active: boolean;
|
|
60142
60827
|
style: vue.StyleValue;
|
|
60143
60828
|
disabled: boolean;
|
|
60829
|
+
tile: boolean;
|
|
60144
60830
|
clearIcon: IconValue;
|
|
60145
60831
|
focused: boolean;
|
|
60146
60832
|
clearable: boolean;
|
|
@@ -60171,7 +60857,7 @@ declare const VTextField: {
|
|
|
60171
60857
|
}> & {} & vue.ComponentCustomProperties & {} & GenericProps<{
|
|
60172
60858
|
modelValue?: unknown;
|
|
60173
60859
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
|
60174
|
-
}, 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}`>, {}, {}, {}, {
|
|
60860
|
+
}, 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}`>, {}, {}, {}, {
|
|
60175
60861
|
flat: boolean;
|
|
60176
60862
|
reverse: boolean;
|
|
60177
60863
|
variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
|
|
@@ -60185,6 +60871,7 @@ declare const VTextField: {
|
|
|
60185
60871
|
readonly: boolean | null;
|
|
60186
60872
|
messages: string | readonly string[];
|
|
60187
60873
|
rounded: string | number | boolean;
|
|
60874
|
+
tile: boolean;
|
|
60188
60875
|
density: Density;
|
|
60189
60876
|
clearIcon: IconValue;
|
|
60190
60877
|
focused: boolean;
|
|
@@ -60217,6 +60904,7 @@ declare const VTextField: {
|
|
|
60217
60904
|
disabled: boolean;
|
|
60218
60905
|
readonly: boolean | null;
|
|
60219
60906
|
messages: string | readonly string[];
|
|
60907
|
+
tile: boolean;
|
|
60220
60908
|
density: Density;
|
|
60221
60909
|
clearIcon: IconValue;
|
|
60222
60910
|
focused: boolean;
|
|
@@ -60559,6 +61247,7 @@ declare const VTextField: {
|
|
|
60559
61247
|
style: vue.StyleValue;
|
|
60560
61248
|
disabled: boolean;
|
|
60561
61249
|
rounded: string | number | boolean;
|
|
61250
|
+
tile: boolean;
|
|
60562
61251
|
clearIcon: IconValue;
|
|
60563
61252
|
focused: boolean;
|
|
60564
61253
|
centerAffix: boolean;
|
|
@@ -60574,6 +61263,7 @@ declare const VTextField: {
|
|
|
60574
61263
|
active: boolean;
|
|
60575
61264
|
style: vue.StyleValue;
|
|
60576
61265
|
disabled: boolean;
|
|
61266
|
+
tile: boolean;
|
|
60577
61267
|
clearIcon: IconValue;
|
|
60578
61268
|
focused: boolean;
|
|
60579
61269
|
clearable: boolean;
|
|
@@ -60604,6 +61294,7 @@ declare const VTextField: {
|
|
|
60604
61294
|
active: boolean;
|
|
60605
61295
|
style: vue.StyleValue;
|
|
60606
61296
|
disabled: boolean;
|
|
61297
|
+
tile: boolean;
|
|
60607
61298
|
clearIcon: IconValue;
|
|
60608
61299
|
focused: boolean;
|
|
60609
61300
|
clearable: boolean;
|
|
@@ -60629,7 +61320,7 @@ declare const VTextField: {
|
|
|
60629
61320
|
centerAffix?: boolean | undefined;
|
|
60630
61321
|
} & {
|
|
60631
61322
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
60632
|
-
}, "flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "rounded" | "clearIcon" | "focused" | "centerAffix" | "clearable" | "dirty" | "persistentClear" | "singleLine">;
|
|
61323
|
+
}, "flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "rounded" | "tile" | "clearIcon" | "focused" | "centerAffix" | "clearable" | "dirty" | "persistentClear" | "singleLine">;
|
|
60633
61324
|
$attrs: {
|
|
60634
61325
|
[x: string]: unknown;
|
|
60635
61326
|
};
|
|
@@ -60671,6 +61362,7 @@ declare const VTextField: {
|
|
|
60671
61362
|
active: boolean;
|
|
60672
61363
|
style: vue.StyleValue;
|
|
60673
61364
|
disabled: boolean;
|
|
61365
|
+
tile: boolean;
|
|
60674
61366
|
clearIcon: IconValue;
|
|
60675
61367
|
focused: boolean;
|
|
60676
61368
|
clearable: boolean;
|
|
@@ -60710,6 +61402,7 @@ declare const VTextField: {
|
|
|
60710
61402
|
style: vue.StyleValue;
|
|
60711
61403
|
disabled: boolean;
|
|
60712
61404
|
rounded: string | number | boolean;
|
|
61405
|
+
tile: boolean;
|
|
60713
61406
|
clearIcon: IconValue;
|
|
60714
61407
|
focused: boolean;
|
|
60715
61408
|
centerAffix: boolean;
|
|
@@ -60767,6 +61460,7 @@ declare const VTextField: {
|
|
|
60767
61460
|
active: boolean;
|
|
60768
61461
|
style: vue.StyleValue;
|
|
60769
61462
|
disabled: boolean;
|
|
61463
|
+
tile: boolean;
|
|
60770
61464
|
clearIcon: IconValue;
|
|
60771
61465
|
focused: boolean;
|
|
60772
61466
|
clearable: boolean;
|
|
@@ -60797,7 +61491,7 @@ declare const VTextField: {
|
|
|
60797
61491
|
}> & {} & vue.ComponentCustomProperties & {} & GenericProps<{
|
|
60798
61492
|
modelValue?: unknown;
|
|
60799
61493
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
|
60800
|
-
}, 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, {
|
|
61494
|
+
}, 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, {
|
|
60801
61495
|
'click:control': (e: MouseEvent) => true;
|
|
60802
61496
|
'mousedown:control': (e: MouseEvent) => true;
|
|
60803
61497
|
'update:focused': (focused: boolean) => true;
|
|
@@ -60816,6 +61510,7 @@ declare const VTextField: {
|
|
|
60816
61510
|
readonly: boolean | null;
|
|
60817
61511
|
messages: string | readonly string[];
|
|
60818
61512
|
rounded: string | number | boolean;
|
|
61513
|
+
tile: boolean;
|
|
60819
61514
|
density: Density;
|
|
60820
61515
|
clearIcon: IconValue;
|
|
60821
61516
|
focused: boolean;
|
|
@@ -60874,6 +61569,7 @@ declare const VTextField: {
|
|
|
60874
61569
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
60875
61570
|
default: undefined;
|
|
60876
61571
|
};
|
|
61572
|
+
tile: BooleanConstructor;
|
|
60877
61573
|
loading: (StringConstructor | BooleanConstructor)[];
|
|
60878
61574
|
class: PropType<any>;
|
|
60879
61575
|
style: {
|
|
@@ -60979,6 +61675,7 @@ declare const VTextField: {
|
|
|
60979
61675
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
60980
61676
|
default: undefined;
|
|
60981
61677
|
};
|
|
61678
|
+
tile: BooleanConstructor;
|
|
60982
61679
|
loading: (StringConstructor | BooleanConstructor)[];
|
|
60983
61680
|
class: PropType<any>;
|
|
60984
61681
|
style: {
|
|
@@ -61427,6 +62124,7 @@ declare const VTimelineItem: {
|
|
|
61427
62124
|
style: vue.StyleValue;
|
|
61428
62125
|
size: string | number;
|
|
61429
62126
|
tag: string;
|
|
62127
|
+
tile: boolean;
|
|
61430
62128
|
fillDot: boolean;
|
|
61431
62129
|
hideDot: boolean;
|
|
61432
62130
|
} & {
|
|
@@ -61464,6 +62162,7 @@ declare const VTimelineItem: {
|
|
|
61464
62162
|
style: vue.StyleValue;
|
|
61465
62163
|
size: string | number;
|
|
61466
62164
|
tag: string;
|
|
62165
|
+
tile: boolean;
|
|
61467
62166
|
fillDot: boolean;
|
|
61468
62167
|
hideDot: boolean;
|
|
61469
62168
|
} & {
|
|
@@ -61502,6 +62201,7 @@ declare const VTimelineItem: {
|
|
|
61502
62201
|
size: string | number;
|
|
61503
62202
|
tag: string;
|
|
61504
62203
|
rounded: string | number | boolean;
|
|
62204
|
+
tile: boolean;
|
|
61505
62205
|
fillDot: boolean;
|
|
61506
62206
|
hideDot: boolean;
|
|
61507
62207
|
hideOpposite: boolean;
|
|
@@ -61526,6 +62226,7 @@ declare const VTimelineItem: {
|
|
|
61526
62226
|
style: vue.StyleValue;
|
|
61527
62227
|
size: string | number;
|
|
61528
62228
|
tag: string;
|
|
62229
|
+
tile: boolean;
|
|
61529
62230
|
fillDot: boolean;
|
|
61530
62231
|
hideDot: boolean;
|
|
61531
62232
|
} & {
|
|
@@ -61564,6 +62265,7 @@ declare const VTimelineItem: {
|
|
|
61564
62265
|
size: string | number;
|
|
61565
62266
|
tag: string;
|
|
61566
62267
|
rounded: string | number | boolean;
|
|
62268
|
+
tile: boolean;
|
|
61567
62269
|
fillDot: boolean;
|
|
61568
62270
|
hideDot: boolean;
|
|
61569
62271
|
hideOpposite: boolean;
|
|
@@ -61575,6 +62277,7 @@ declare const VTimelineItem: {
|
|
|
61575
62277
|
style: vue.StyleValue;
|
|
61576
62278
|
size: string | number;
|
|
61577
62279
|
tag: string;
|
|
62280
|
+
tile: boolean;
|
|
61578
62281
|
fillDot: boolean;
|
|
61579
62282
|
hideDot: boolean;
|
|
61580
62283
|
} & {
|
|
@@ -61613,6 +62316,7 @@ declare const VTimelineItem: {
|
|
|
61613
62316
|
size: string | number;
|
|
61614
62317
|
tag: string;
|
|
61615
62318
|
rounded: string | number | boolean;
|
|
62319
|
+
tile: boolean;
|
|
61616
62320
|
fillDot: boolean;
|
|
61617
62321
|
hideDot: boolean;
|
|
61618
62322
|
hideOpposite: boolean;
|
|
@@ -61639,6 +62343,7 @@ declare const VTimelineItem: {
|
|
|
61639
62343
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
61640
62344
|
default: undefined;
|
|
61641
62345
|
};
|
|
62346
|
+
tile: BooleanConstructor;
|
|
61642
62347
|
elevation: {
|
|
61643
62348
|
type: (StringConstructor | NumberConstructor)[];
|
|
61644
62349
|
validator(v: any): boolean;
|
|
@@ -61678,6 +62383,7 @@ declare const VTimelineItem: {
|
|
|
61678
62383
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
61679
62384
|
default: undefined;
|
|
61680
62385
|
};
|
|
62386
|
+
tile: BooleanConstructor;
|
|
61681
62387
|
elevation: {
|
|
61682
62388
|
type: (StringConstructor | NumberConstructor)[];
|
|
61683
62389
|
validator(v: any): boolean;
|