@vuetify/nightly 3.9.3-dev.2025-07-31 → 3.9.3-dev.2025-08-02
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/CHANGELOG.md +10 -3
- package/dist/json/attributes.json +2098 -2022
- package/dist/json/importMap-labs.json +24 -24
- package/dist/json/importMap.json +168 -168
- package/dist/json/tags.json +19 -0
- package/dist/json/web-types.json +4252 -4050
- package/dist/vuetify-labs.cjs +77 -24
- package/dist/vuetify-labs.css +5349 -5343
- package/dist/vuetify-labs.d.ts +329 -61
- package/dist/vuetify-labs.esm.js +77 -24
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +77 -24
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.cjs +77 -24
- package/dist/vuetify.cjs.map +1 -1
- package/dist/vuetify.css +2939 -2933
- package/dist/vuetify.d.ts +329 -61
- package/dist/vuetify.esm.js +77 -24
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +77 -24
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +252 -249
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VDataIterator/VDataIterator.d.ts +1 -0
- package/lib/components/VDataIterator/VDataIterator.js +1 -0
- package/lib/components/VDataIterator/VDataIterator.js.map +1 -1
- package/lib/components/VDataTable/VDataTable.css +7 -1
- package/lib/components/VDataTable/VDataTable.d.ts +164 -0
- package/lib/components/VDataTable/VDataTable.sass +4 -1
- package/lib/components/VDataTable/VDataTableColumn.d.ts +4 -1
- package/lib/components/VDataTable/VDataTableColumn.js +6 -2
- package/lib/components/VDataTable/VDataTableColumn.js.map +1 -1
- package/lib/components/VDataTable/VDataTableGroupHeaderRow.d.ts +57 -3
- package/lib/components/VDataTable/VDataTableGroupHeaderRow.js +27 -12
- package/lib/components/VDataTable/VDataTableGroupHeaderRow.js.map +1 -1
- package/lib/components/VDataTable/VDataTableHeaders.js +3 -0
- package/lib/components/VDataTable/VDataTableHeaders.js.map +1 -1
- package/lib/components/VDataTable/VDataTableRow.d.ts +51 -0
- package/lib/components/VDataTable/VDataTableRow.js +17 -4
- package/lib/components/VDataTable/VDataTableRow.js.map +1 -1
- package/lib/components/VDataTable/VDataTableRows.d.ts +100 -0
- package/lib/components/VDataTable/VDataTableRows.js +9 -4
- package/lib/components/VDataTable/VDataTableRows.js.map +1 -1
- package/lib/components/VDataTable/VDataTableServer.d.ts +110 -0
- package/lib/components/VDataTable/VDataTableVirtual.d.ts +110 -0
- package/lib/components/VDataTable/composables/headers.d.ts +14 -0
- package/lib/components/VDataTable/types.d.ts +1 -0
- package/lib/components/VDataTable/types.js.map +1 -1
- package/lib/components/VFileInput/VFileInput.d.ts +25 -0
- package/lib/components/VFileInput/VFileInput.js +11 -1
- package/lib/components/VFileInput/VFileInput.js.map +1 -1
- package/lib/components/VSkeletonLoader/VSkeletonLoader.js +6 -4
- package/lib/components/VSkeletonLoader/VSkeletonLoader.js.map +1 -1
- package/lib/components/VWindow/VWindow.js +2 -2
- package/lib/components/VWindow/VWindow.js.map +1 -1
- package/lib/entry-bundler.js +1 -1
- package/lib/framework.d.ts +62 -61
- package/lib/framework.js +1 -1
- package/lib/iconsets/fa.js +2 -0
- package/lib/iconsets/fa.js.map +1 -1
- package/lib/iconsets/fa4.js +2 -0
- package/lib/iconsets/fa4.js.map +1 -1
- package/lib/iconsets/md.js +2 -0
- package/lib/iconsets/md.js.map +1 -1
- package/lib/iconsets/mdi-svg.js +2 -0
- package/lib/iconsets/mdi-svg.js.map +1 -1
- package/lib/iconsets/mdi.js +2 -0
- package/lib/iconsets/mdi.js.map +1 -1
- package/package.json +1 -1
@@ -60,6 +60,10 @@ export declare const makeVDataTableServerProps: <Defaults extends {
|
|
60
60
|
hideDefaultHeader?: unknown;
|
61
61
|
width?: unknown;
|
62
62
|
search?: unknown;
|
63
|
+
groupCollapseIcon?: unknown;
|
64
|
+
groupExpandIcon?: unknown;
|
65
|
+
collapseIcon?: unknown;
|
66
|
+
expandIcon?: unknown;
|
63
67
|
loadingText?: unknown;
|
64
68
|
hideNoData?: unknown;
|
65
69
|
noDataText?: unknown;
|
@@ -439,6 +443,7 @@ export declare const makeVDataTableServerProps: <Defaults extends {
|
|
439
443
|
readonly minWidth?: number | string | undefined;
|
440
444
|
readonly maxWidth?: number | string | undefined;
|
441
445
|
readonly nowrap?: boolean | undefined;
|
446
|
+
readonly intent?: number | undefined;
|
442
447
|
readonly headerProps?: {
|
443
448
|
readonly [x: string]: any;
|
444
449
|
} | undefined;
|
@@ -459,6 +464,7 @@ export declare const makeVDataTableServerProps: <Defaults extends {
|
|
459
464
|
readonly minWidth?: number | string | undefined;
|
460
465
|
readonly maxWidth?: number | string | undefined;
|
461
466
|
readonly nowrap?: boolean | undefined;
|
467
|
+
readonly intent?: number | undefined;
|
462
468
|
readonly headerProps?: {
|
463
469
|
readonly [x: string]: any;
|
464
470
|
} | undefined;
|
@@ -482,6 +488,7 @@ export declare const makeVDataTableServerProps: <Defaults extends {
|
|
482
488
|
readonly minWidth?: number | string | undefined;
|
483
489
|
readonly maxWidth?: number | string | undefined;
|
484
490
|
readonly nowrap?: boolean | undefined;
|
491
|
+
readonly intent?: number | undefined;
|
485
492
|
readonly headerProps?: {
|
486
493
|
readonly [x: string]: any;
|
487
494
|
} | undefined;
|
@@ -502,6 +509,7 @@ export declare const makeVDataTableServerProps: <Defaults extends {
|
|
502
509
|
readonly minWidth?: number | string | undefined;
|
503
510
|
readonly maxWidth?: number | string | undefined;
|
504
511
|
readonly nowrap?: boolean | undefined;
|
512
|
+
readonly intent?: number | undefined;
|
505
513
|
readonly headerProps?: {
|
506
514
|
readonly [x: string]: any;
|
507
515
|
} | undefined;
|
@@ -524,6 +532,7 @@ export declare const makeVDataTableServerProps: <Defaults extends {
|
|
524
532
|
readonly minWidth?: number | string | undefined;
|
525
533
|
readonly maxWidth?: number | string | undefined;
|
526
534
|
readonly nowrap?: boolean | undefined;
|
535
|
+
readonly intent?: number | undefined;
|
527
536
|
readonly headerProps?: {
|
528
537
|
readonly [x: string]: any;
|
529
538
|
} | undefined;
|
@@ -544,6 +553,7 @@ export declare const makeVDataTableServerProps: <Defaults extends {
|
|
544
553
|
readonly minWidth?: number | string | undefined;
|
545
554
|
readonly maxWidth?: number | string | undefined;
|
546
555
|
readonly nowrap?: boolean | undefined;
|
556
|
+
readonly intent?: number | undefined;
|
547
557
|
readonly headerProps?: {
|
548
558
|
readonly [x: string]: any;
|
549
559
|
} | undefined;
|
@@ -567,6 +577,7 @@ export declare const makeVDataTableServerProps: <Defaults extends {
|
|
567
577
|
readonly minWidth?: number | string | undefined;
|
568
578
|
readonly maxWidth?: number | string | undefined;
|
569
579
|
readonly nowrap?: boolean | undefined;
|
580
|
+
readonly intent?: number | undefined;
|
570
581
|
readonly headerProps?: {
|
571
582
|
readonly [x: string]: any;
|
572
583
|
} | undefined;
|
@@ -587,6 +598,7 @@ export declare const makeVDataTableServerProps: <Defaults extends {
|
|
587
598
|
readonly minWidth?: number | string | undefined;
|
588
599
|
readonly maxWidth?: number | string | undefined;
|
589
600
|
readonly nowrap?: boolean | undefined;
|
601
|
+
readonly intent?: number | undefined;
|
590
602
|
readonly headerProps?: {
|
591
603
|
readonly [x: string]: any;
|
592
604
|
} | undefined;
|
@@ -609,6 +621,7 @@ export declare const makeVDataTableServerProps: <Defaults extends {
|
|
609
621
|
readonly minWidth?: number | string | undefined;
|
610
622
|
readonly maxWidth?: number | string | undefined;
|
611
623
|
readonly nowrap?: boolean | undefined;
|
624
|
+
readonly intent?: number | undefined;
|
612
625
|
readonly headerProps?: {
|
613
626
|
readonly [x: string]: any;
|
614
627
|
} | undefined;
|
@@ -629,6 +642,7 @@ export declare const makeVDataTableServerProps: <Defaults extends {
|
|
629
642
|
readonly minWidth?: number | string | undefined;
|
630
643
|
readonly maxWidth?: number | string | undefined;
|
631
644
|
readonly nowrap?: boolean | undefined;
|
645
|
+
readonly intent?: number | undefined;
|
632
646
|
readonly headerProps?: {
|
633
647
|
readonly [x: string]: any;
|
634
648
|
} | undefined;
|
@@ -691,6 +705,46 @@ export declare const makeVDataTableServerProps: <Defaults extends {
|
|
691
705
|
type: import("vue").PropType<unknown extends Defaults["search"] ? string : string | Defaults["search"]>;
|
692
706
|
default: unknown extends Defaults["search"] ? string : string | Defaults["search"];
|
693
707
|
};
|
708
|
+
groupCollapseIcon: unknown extends Defaults["groupCollapseIcon"] ? {
|
709
|
+
type: import("vue").PropType<import("../../composables/icons.js").IconValue>;
|
710
|
+
default: string;
|
711
|
+
} : Omit<{
|
712
|
+
type: import("vue").PropType<import("../../composables/icons.js").IconValue>;
|
713
|
+
default: string;
|
714
|
+
}, "type" | "default"> & {
|
715
|
+
type: import("vue").PropType<unknown extends Defaults["groupCollapseIcon"] ? import("../../composables/icons.js").IconValue : import("../../composables/icons.js").IconValue | Defaults["groupCollapseIcon"]>;
|
716
|
+
default: unknown extends Defaults["groupCollapseIcon"] ? import("../../composables/icons.js").IconValue : NonNullable<import("../../composables/icons.js").IconValue> | Defaults["groupCollapseIcon"];
|
717
|
+
};
|
718
|
+
groupExpandIcon: unknown extends Defaults["groupExpandIcon"] ? {
|
719
|
+
type: import("vue").PropType<import("../../composables/icons.js").IconValue>;
|
720
|
+
default: string;
|
721
|
+
} : Omit<{
|
722
|
+
type: import("vue").PropType<import("../../composables/icons.js").IconValue>;
|
723
|
+
default: string;
|
724
|
+
}, "type" | "default"> & {
|
725
|
+
type: import("vue").PropType<unknown extends Defaults["groupExpandIcon"] ? import("../../composables/icons.js").IconValue : import("../../composables/icons.js").IconValue | Defaults["groupExpandIcon"]>;
|
726
|
+
default: unknown extends Defaults["groupExpandIcon"] ? import("../../composables/icons.js").IconValue : NonNullable<import("../../composables/icons.js").IconValue> | Defaults["groupExpandIcon"];
|
727
|
+
};
|
728
|
+
collapseIcon: unknown extends Defaults["collapseIcon"] ? {
|
729
|
+
type: import("vue").PropType<import("../../composables/icons.js").IconValue>;
|
730
|
+
default: string;
|
731
|
+
} : Omit<{
|
732
|
+
type: import("vue").PropType<import("../../composables/icons.js").IconValue>;
|
733
|
+
default: string;
|
734
|
+
}, "type" | "default"> & {
|
735
|
+
type: import("vue").PropType<unknown extends Defaults["collapseIcon"] ? import("../../composables/icons.js").IconValue : import("../../composables/icons.js").IconValue | Defaults["collapseIcon"]>;
|
736
|
+
default: unknown extends Defaults["collapseIcon"] ? import("../../composables/icons.js").IconValue : NonNullable<import("../../composables/icons.js").IconValue> | Defaults["collapseIcon"];
|
737
|
+
};
|
738
|
+
expandIcon: unknown extends Defaults["expandIcon"] ? {
|
739
|
+
type: import("vue").PropType<import("../../composables/icons.js").IconValue>;
|
740
|
+
default: string;
|
741
|
+
} : Omit<{
|
742
|
+
type: import("vue").PropType<import("../../composables/icons.js").IconValue>;
|
743
|
+
default: string;
|
744
|
+
}, "type" | "default"> & {
|
745
|
+
type: import("vue").PropType<unknown extends Defaults["expandIcon"] ? import("../../composables/icons.js").IconValue : import("../../composables/icons.js").IconValue | Defaults["expandIcon"]>;
|
746
|
+
default: unknown extends Defaults["expandIcon"] ? import("../../composables/icons.js").IconValue : NonNullable<import("../../composables/icons.js").IconValue> | Defaults["expandIcon"];
|
747
|
+
};
|
694
748
|
loadingText: unknown extends Defaults["loadingText"] ? {
|
695
749
|
type: StringConstructor;
|
696
750
|
default: string;
|
@@ -774,6 +828,8 @@ export declare const VDataTableServer: {
|
|
774
828
|
striped: import("../VTable/VTable.js").Striped;
|
775
829
|
nextIcon: import("../../composables/icons.js").IconValue;
|
776
830
|
prevIcon: import("../../composables/icons.js").IconValue;
|
831
|
+
collapseIcon: import("../../composables/icons.js").IconValue;
|
832
|
+
expandIcon: import("../../composables/icons.js").IconValue;
|
777
833
|
hideNoData: boolean;
|
778
834
|
hover: boolean;
|
779
835
|
itemsPerPage: string | number;
|
@@ -792,6 +848,8 @@ export declare const VDataTableServer: {
|
|
792
848
|
fixedHeader: boolean;
|
793
849
|
sortAscIcon: import("../../composables/icons.js").IconValue;
|
794
850
|
sortDescIcon: import("../../composables/icons.js").IconValue;
|
851
|
+
groupCollapseIcon: import("../../composables/icons.js").IconValue;
|
852
|
+
groupExpandIcon: import("../../composables/icons.js").IconValue;
|
795
853
|
fixedFooter: boolean;
|
796
854
|
hideDefaultBody: boolean;
|
797
855
|
hideDefaultFooter: boolean;
|
@@ -848,6 +906,8 @@ export declare const VDataTableServer: {
|
|
848
906
|
striped: import("../VTable/VTable.js").Striped;
|
849
907
|
nextIcon: import("../../composables/icons.js").IconValue;
|
850
908
|
prevIcon: import("../../composables/icons.js").IconValue;
|
909
|
+
collapseIcon: import("../../composables/icons.js").IconValue;
|
910
|
+
expandIcon: import("../../composables/icons.js").IconValue;
|
851
911
|
hideNoData: boolean;
|
852
912
|
hover: boolean;
|
853
913
|
itemsPerPage: string | number;
|
@@ -865,6 +925,8 @@ export declare const VDataTableServer: {
|
|
865
925
|
fixedHeader: boolean;
|
866
926
|
sortAscIcon: import("../../composables/icons.js").IconValue;
|
867
927
|
sortDescIcon: import("../../composables/icons.js").IconValue;
|
928
|
+
groupCollapseIcon: import("../../composables/icons.js").IconValue;
|
929
|
+
groupExpandIcon: import("../../composables/icons.js").IconValue;
|
868
930
|
fixedFooter: boolean;
|
869
931
|
hideDefaultBody: boolean;
|
870
932
|
hideDefaultFooter: boolean;
|
@@ -947,6 +1009,8 @@ export declare const VDataTableServer: {
|
|
947
1009
|
striped: import("../VTable/VTable.js").Striped;
|
948
1010
|
nextIcon: import("../../composables/icons.js").IconValue;
|
949
1011
|
prevIcon: import("../../composables/icons.js").IconValue;
|
1012
|
+
collapseIcon: import("../../composables/icons.js").IconValue;
|
1013
|
+
expandIcon: import("../../composables/icons.js").IconValue;
|
950
1014
|
hideNoData: boolean;
|
951
1015
|
hover: boolean;
|
952
1016
|
itemsPerPage: string | number;
|
@@ -965,6 +1029,8 @@ export declare const VDataTableServer: {
|
|
965
1029
|
fixedHeader: boolean;
|
966
1030
|
sortAscIcon: import("../../composables/icons.js").IconValue;
|
967
1031
|
sortDescIcon: import("../../composables/icons.js").IconValue;
|
1032
|
+
groupCollapseIcon: import("../../composables/icons.js").IconValue;
|
1033
|
+
groupExpandIcon: import("../../composables/icons.js").IconValue;
|
968
1034
|
fixedFooter: boolean;
|
969
1035
|
hideDefaultBody: boolean;
|
970
1036
|
hideDefaultFooter: boolean;
|
@@ -1013,6 +1079,8 @@ export declare const VDataTableServer: {
|
|
1013
1079
|
striped: import("../VTable/VTable.js").Striped;
|
1014
1080
|
nextIcon: import("../../composables/icons.js").IconValue;
|
1015
1081
|
prevIcon: import("../../composables/icons.js").IconValue;
|
1082
|
+
collapseIcon: import("../../composables/icons.js").IconValue;
|
1083
|
+
expandIcon: import("../../composables/icons.js").IconValue;
|
1016
1084
|
hideNoData: boolean;
|
1017
1085
|
hover: boolean;
|
1018
1086
|
itemsPerPage: string | number;
|
@@ -1030,6 +1098,8 @@ export declare const VDataTableServer: {
|
|
1030
1098
|
fixedHeader: boolean;
|
1031
1099
|
sortAscIcon: import("../../composables/icons.js").IconValue;
|
1032
1100
|
sortDescIcon: import("../../composables/icons.js").IconValue;
|
1101
|
+
groupCollapseIcon: import("../../composables/icons.js").IconValue;
|
1102
|
+
groupExpandIcon: import("../../composables/icons.js").IconValue;
|
1033
1103
|
fixedFooter: boolean;
|
1034
1104
|
hideDefaultBody: boolean;
|
1035
1105
|
hideDefaultFooter: boolean;
|
@@ -1064,6 +1134,8 @@ export declare const VDataTableServer: {
|
|
1064
1134
|
striped: import("../VTable/VTable.js").Striped;
|
1065
1135
|
nextIcon: import("../../composables/icons.js").IconValue;
|
1066
1136
|
prevIcon: import("../../composables/icons.js").IconValue;
|
1137
|
+
collapseIcon: import("../../composables/icons.js").IconValue;
|
1138
|
+
expandIcon: import("../../composables/icons.js").IconValue;
|
1067
1139
|
hideNoData: boolean;
|
1068
1140
|
hover: boolean;
|
1069
1141
|
itemsPerPage: string | number;
|
@@ -1082,6 +1154,8 @@ export declare const VDataTableServer: {
|
|
1082
1154
|
fixedHeader: boolean;
|
1083
1155
|
sortAscIcon: import("../../composables/icons.js").IconValue;
|
1084
1156
|
sortDescIcon: import("../../composables/icons.js").IconValue;
|
1157
|
+
groupCollapseIcon: import("../../composables/icons.js").IconValue;
|
1158
|
+
groupExpandIcon: import("../../composables/icons.js").IconValue;
|
1085
1159
|
fixedFooter: boolean;
|
1086
1160
|
hideDefaultBody: boolean;
|
1087
1161
|
hideDefaultFooter: boolean;
|
@@ -1138,6 +1212,8 @@ export declare const VDataTableServer: {
|
|
1138
1212
|
striped: import("../VTable/VTable.js").Striped;
|
1139
1213
|
nextIcon: import("../../composables/icons.js").IconValue;
|
1140
1214
|
prevIcon: import("../../composables/icons.js").IconValue;
|
1215
|
+
collapseIcon: import("../../composables/icons.js").IconValue;
|
1216
|
+
expandIcon: import("../../composables/icons.js").IconValue;
|
1141
1217
|
hideNoData: boolean;
|
1142
1218
|
hover: boolean;
|
1143
1219
|
itemsPerPage: string | number;
|
@@ -1155,6 +1231,8 @@ export declare const VDataTableServer: {
|
|
1155
1231
|
fixedHeader: boolean;
|
1156
1232
|
sortAscIcon: import("../../composables/icons.js").IconValue;
|
1157
1233
|
sortDescIcon: import("../../composables/icons.js").IconValue;
|
1234
|
+
groupCollapseIcon: import("../../composables/icons.js").IconValue;
|
1235
|
+
groupExpandIcon: import("../../composables/icons.js").IconValue;
|
1158
1236
|
fixedFooter: boolean;
|
1159
1237
|
hideDefaultBody: boolean;
|
1160
1238
|
hideDefaultFooter: boolean;
|
@@ -1360,6 +1438,22 @@ export declare const VDataTableServer: {
|
|
1360
1438
|
hideDefaultHeader: BooleanConstructor;
|
1361
1439
|
width: (StringConstructor | NumberConstructor)[];
|
1362
1440
|
search: StringConstructor;
|
1441
|
+
groupCollapseIcon: {
|
1442
|
+
type: import("vue").PropType<import("../../composables/icons.js").IconValue>;
|
1443
|
+
default: string;
|
1444
|
+
};
|
1445
|
+
groupExpandIcon: {
|
1446
|
+
type: import("vue").PropType<import("../../composables/icons.js").IconValue>;
|
1447
|
+
default: string;
|
1448
|
+
};
|
1449
|
+
collapseIcon: {
|
1450
|
+
type: import("vue").PropType<import("../../composables/icons.js").IconValue>;
|
1451
|
+
default: string;
|
1452
|
+
};
|
1453
|
+
expandIcon: {
|
1454
|
+
type: import("vue").PropType<import("../../composables/icons.js").IconValue>;
|
1455
|
+
default: string;
|
1456
|
+
};
|
1363
1457
|
loadingText: {
|
1364
1458
|
type: StringConstructor;
|
1365
1459
|
default: string;
|
@@ -1528,6 +1622,22 @@ export declare const VDataTableServer: {
|
|
1528
1622
|
hideDefaultHeader: BooleanConstructor;
|
1529
1623
|
width: (StringConstructor | NumberConstructor)[];
|
1530
1624
|
search: StringConstructor;
|
1625
|
+
groupCollapseIcon: {
|
1626
|
+
type: import("vue").PropType<import("../../composables/icons.js").IconValue>;
|
1627
|
+
default: string;
|
1628
|
+
};
|
1629
|
+
groupExpandIcon: {
|
1630
|
+
type: import("vue").PropType<import("../../composables/icons.js").IconValue>;
|
1631
|
+
default: string;
|
1632
|
+
};
|
1633
|
+
collapseIcon: {
|
1634
|
+
type: import("vue").PropType<import("../../composables/icons.js").IconValue>;
|
1635
|
+
default: string;
|
1636
|
+
};
|
1637
|
+
expandIcon: {
|
1638
|
+
type: import("vue").PropType<import("../../composables/icons.js").IconValue>;
|
1639
|
+
default: string;
|
1640
|
+
};
|
1531
1641
|
loadingText: {
|
1532
1642
|
type: StringConstructor;
|
1533
1643
|
default: string;
|
@@ -66,11 +66,15 @@ export declare const makeVDataTableVirtualProps: <Defaults extends {
|
|
66
66
|
valueComparator?: unknown;
|
67
67
|
density?: unknown;
|
68
68
|
striped?: unknown;
|
69
|
+
collapseIcon?: unknown;
|
70
|
+
expandIcon?: unknown;
|
69
71
|
hideNoData?: unknown;
|
70
72
|
hover?: unknown;
|
71
73
|
fixedHeader?: unknown;
|
72
74
|
sortAscIcon?: unknown;
|
73
75
|
sortDescIcon?: unknown;
|
76
|
+
groupCollapseIcon?: unknown;
|
77
|
+
groupExpandIcon?: unknown;
|
74
78
|
fixedFooter?: unknown;
|
75
79
|
hideDefaultBody?: unknown;
|
76
80
|
hideDefaultHeader?: unknown;
|
@@ -199,6 +203,7 @@ export declare const makeVDataTableVirtualProps: <Defaults extends {
|
|
199
203
|
readonly minWidth?: number | string | undefined;
|
200
204
|
readonly maxWidth?: number | string | undefined;
|
201
205
|
readonly nowrap?: boolean | undefined;
|
206
|
+
readonly intent?: number | undefined;
|
202
207
|
readonly headerProps?: {
|
203
208
|
readonly [x: string]: any;
|
204
209
|
} | undefined;
|
@@ -219,6 +224,7 @@ export declare const makeVDataTableVirtualProps: <Defaults extends {
|
|
219
224
|
readonly minWidth?: number | string | undefined;
|
220
225
|
readonly maxWidth?: number | string | undefined;
|
221
226
|
readonly nowrap?: boolean | undefined;
|
227
|
+
readonly intent?: number | undefined;
|
222
228
|
readonly headerProps?: {
|
223
229
|
readonly [x: string]: any;
|
224
230
|
} | undefined;
|
@@ -242,6 +248,7 @@ export declare const makeVDataTableVirtualProps: <Defaults extends {
|
|
242
248
|
readonly minWidth?: number | string | undefined;
|
243
249
|
readonly maxWidth?: number | string | undefined;
|
244
250
|
readonly nowrap?: boolean | undefined;
|
251
|
+
readonly intent?: number | undefined;
|
245
252
|
readonly headerProps?: {
|
246
253
|
readonly [x: string]: any;
|
247
254
|
} | undefined;
|
@@ -262,6 +269,7 @@ export declare const makeVDataTableVirtualProps: <Defaults extends {
|
|
262
269
|
readonly minWidth?: number | string | undefined;
|
263
270
|
readonly maxWidth?: number | string | undefined;
|
264
271
|
readonly nowrap?: boolean | undefined;
|
272
|
+
readonly intent?: number | undefined;
|
265
273
|
readonly headerProps?: {
|
266
274
|
readonly [x: string]: any;
|
267
275
|
} | undefined;
|
@@ -284,6 +292,7 @@ export declare const makeVDataTableVirtualProps: <Defaults extends {
|
|
284
292
|
readonly minWidth?: number | string | undefined;
|
285
293
|
readonly maxWidth?: number | string | undefined;
|
286
294
|
readonly nowrap?: boolean | undefined;
|
295
|
+
readonly intent?: number | undefined;
|
287
296
|
readonly headerProps?: {
|
288
297
|
readonly [x: string]: any;
|
289
298
|
} | undefined;
|
@@ -304,6 +313,7 @@ export declare const makeVDataTableVirtualProps: <Defaults extends {
|
|
304
313
|
readonly minWidth?: number | string | undefined;
|
305
314
|
readonly maxWidth?: number | string | undefined;
|
306
315
|
readonly nowrap?: boolean | undefined;
|
316
|
+
readonly intent?: number | undefined;
|
307
317
|
readonly headerProps?: {
|
308
318
|
readonly [x: string]: any;
|
309
319
|
} | undefined;
|
@@ -327,6 +337,7 @@ export declare const makeVDataTableVirtualProps: <Defaults extends {
|
|
327
337
|
readonly minWidth?: number | string | undefined;
|
328
338
|
readonly maxWidth?: number | string | undefined;
|
329
339
|
readonly nowrap?: boolean | undefined;
|
340
|
+
readonly intent?: number | undefined;
|
330
341
|
readonly headerProps?: {
|
331
342
|
readonly [x: string]: any;
|
332
343
|
} | undefined;
|
@@ -347,6 +358,7 @@ export declare const makeVDataTableVirtualProps: <Defaults extends {
|
|
347
358
|
readonly minWidth?: number | string | undefined;
|
348
359
|
readonly maxWidth?: number | string | undefined;
|
349
360
|
readonly nowrap?: boolean | undefined;
|
361
|
+
readonly intent?: number | undefined;
|
350
362
|
readonly headerProps?: {
|
351
363
|
readonly [x: string]: any;
|
352
364
|
} | undefined;
|
@@ -369,6 +381,7 @@ export declare const makeVDataTableVirtualProps: <Defaults extends {
|
|
369
381
|
readonly minWidth?: number | string | undefined;
|
370
382
|
readonly maxWidth?: number | string | undefined;
|
371
383
|
readonly nowrap?: boolean | undefined;
|
384
|
+
readonly intent?: number | undefined;
|
372
385
|
readonly headerProps?: {
|
373
386
|
readonly [x: string]: any;
|
374
387
|
} | undefined;
|
@@ -389,6 +402,7 @@ export declare const makeVDataTableVirtualProps: <Defaults extends {
|
|
389
402
|
readonly minWidth?: number | string | undefined;
|
390
403
|
readonly maxWidth?: number | string | undefined;
|
391
404
|
readonly nowrap?: boolean | undefined;
|
405
|
+
readonly intent?: number | undefined;
|
392
406
|
readonly headerProps?: {
|
393
407
|
readonly [x: string]: any;
|
394
408
|
} | undefined;
|
@@ -583,6 +597,26 @@ export declare const makeVDataTableVirtualProps: <Defaults extends {
|
|
583
597
|
type: import("vue").PropType<unknown extends Defaults["striped"] ? import("../VTable/VTable.js").Striped : import("../VTable/VTable.js").Striped | Defaults["striped"]>;
|
584
598
|
default: unknown extends Defaults["striped"] ? import("../VTable/VTable.js").Striped : NonNullable<import("../VTable/VTable.js").Striped> | Defaults["striped"];
|
585
599
|
};
|
600
|
+
collapseIcon: unknown extends Defaults["collapseIcon"] ? {
|
601
|
+
type: import("vue").PropType<import("../../composables/icons.js").IconValue>;
|
602
|
+
default: string;
|
603
|
+
} : Omit<{
|
604
|
+
type: import("vue").PropType<import("../../composables/icons.js").IconValue>;
|
605
|
+
default: string;
|
606
|
+
}, "type" | "default"> & {
|
607
|
+
type: import("vue").PropType<unknown extends Defaults["collapseIcon"] ? import("../../composables/icons.js").IconValue : import("../../composables/icons.js").IconValue | Defaults["collapseIcon"]>;
|
608
|
+
default: unknown extends Defaults["collapseIcon"] ? import("../../composables/icons.js").IconValue : NonNullable<import("../../composables/icons.js").IconValue> | Defaults["collapseIcon"];
|
609
|
+
};
|
610
|
+
expandIcon: unknown extends Defaults["expandIcon"] ? {
|
611
|
+
type: import("vue").PropType<import("../../composables/icons.js").IconValue>;
|
612
|
+
default: string;
|
613
|
+
} : Omit<{
|
614
|
+
type: import("vue").PropType<import("../../composables/icons.js").IconValue>;
|
615
|
+
default: string;
|
616
|
+
}, "type" | "default"> & {
|
617
|
+
type: import("vue").PropType<unknown extends Defaults["expandIcon"] ? import("../../composables/icons.js").IconValue : import("../../composables/icons.js").IconValue | Defaults["expandIcon"]>;
|
618
|
+
default: unknown extends Defaults["expandIcon"] ? import("../../composables/icons.js").IconValue : NonNullable<import("../../composables/icons.js").IconValue> | Defaults["expandIcon"];
|
619
|
+
};
|
586
620
|
hideNoData: unknown extends Defaults["hideNoData"] ? BooleanConstructor : {
|
587
621
|
type: import("vue").PropType<unknown extends Defaults["hideNoData"] ? boolean : boolean | Defaults["hideNoData"]>;
|
588
622
|
default: unknown extends Defaults["hideNoData"] ? boolean : boolean | Defaults["hideNoData"];
|
@@ -615,6 +649,26 @@ export declare const makeVDataTableVirtualProps: <Defaults extends {
|
|
615
649
|
type: import("vue").PropType<unknown extends Defaults["sortDescIcon"] ? import("../../composables/icons.js").IconValue : import("../../composables/icons.js").IconValue | Defaults["sortDescIcon"]>;
|
616
650
|
default: unknown extends Defaults["sortDescIcon"] ? import("../../composables/icons.js").IconValue : NonNullable<import("../../composables/icons.js").IconValue> | Defaults["sortDescIcon"];
|
617
651
|
};
|
652
|
+
groupCollapseIcon: unknown extends Defaults["groupCollapseIcon"] ? {
|
653
|
+
type: import("vue").PropType<import("../../composables/icons.js").IconValue>;
|
654
|
+
default: string;
|
655
|
+
} : Omit<{
|
656
|
+
type: import("vue").PropType<import("../../composables/icons.js").IconValue>;
|
657
|
+
default: string;
|
658
|
+
}, "type" | "default"> & {
|
659
|
+
type: import("vue").PropType<unknown extends Defaults["groupCollapseIcon"] ? import("../../composables/icons.js").IconValue : import("../../composables/icons.js").IconValue | Defaults["groupCollapseIcon"]>;
|
660
|
+
default: unknown extends Defaults["groupCollapseIcon"] ? import("../../composables/icons.js").IconValue : NonNullable<import("../../composables/icons.js").IconValue> | Defaults["groupCollapseIcon"];
|
661
|
+
};
|
662
|
+
groupExpandIcon: unknown extends Defaults["groupExpandIcon"] ? {
|
663
|
+
type: import("vue").PropType<import("../../composables/icons.js").IconValue>;
|
664
|
+
default: string;
|
665
|
+
} : Omit<{
|
666
|
+
type: import("vue").PropType<import("../../composables/icons.js").IconValue>;
|
667
|
+
default: string;
|
668
|
+
}, "type" | "default"> & {
|
669
|
+
type: import("vue").PropType<unknown extends Defaults["groupExpandIcon"] ? import("../../composables/icons.js").IconValue : import("../../composables/icons.js").IconValue | Defaults["groupExpandIcon"]>;
|
670
|
+
default: unknown extends Defaults["groupExpandIcon"] ? import("../../composables/icons.js").IconValue : NonNullable<import("../../composables/icons.js").IconValue> | Defaults["groupExpandIcon"];
|
671
|
+
};
|
618
672
|
fixedFooter: unknown extends Defaults["fixedFooter"] ? BooleanConstructor : {
|
619
673
|
type: import("vue").PropType<unknown extends Defaults["fixedFooter"] ? boolean : boolean | Defaults["fixedFooter"]>;
|
620
674
|
default: unknown extends Defaults["fixedFooter"] ? boolean : boolean | Defaults["fixedFooter"];
|
@@ -653,6 +707,8 @@ export declare const VDataTableVirtual: {
|
|
653
707
|
valueComparator: typeof import("../../util/index.js").deepEqual;
|
654
708
|
density: import("../../composables/density.js").Density;
|
655
709
|
striped: import("../VTable/VTable.js").Striped;
|
710
|
+
collapseIcon: import("../../composables/icons.js").IconValue;
|
711
|
+
expandIcon: import("../../composables/icons.js").IconValue;
|
656
712
|
itemHeight: string | number;
|
657
713
|
itemKey: SelectItemKey;
|
658
714
|
hideNoData: boolean;
|
@@ -660,6 +716,8 @@ export declare const VDataTableVirtual: {
|
|
660
716
|
fixedHeader: boolean;
|
661
717
|
sortAscIcon: import("../../composables/icons.js").IconValue;
|
662
718
|
sortDescIcon: import("../../composables/icons.js").IconValue;
|
719
|
+
groupCollapseIcon: import("../../composables/icons.js").IconValue;
|
720
|
+
groupExpandIcon: import("../../composables/icons.js").IconValue;
|
663
721
|
fixedFooter: boolean;
|
664
722
|
hideDefaultBody: boolean;
|
665
723
|
hideDefaultHeader: boolean;
|
@@ -714,6 +772,8 @@ export declare const VDataTableVirtual: {
|
|
714
772
|
valueComparator: typeof import("../../util/index.js").deepEqual;
|
715
773
|
density: import("../../composables/density.js").Density;
|
716
774
|
striped: import("../VTable/VTable.js").Striped;
|
775
|
+
collapseIcon: import("../../composables/icons.js").IconValue;
|
776
|
+
expandIcon: import("../../composables/icons.js").IconValue;
|
717
777
|
itemHeight: string | number;
|
718
778
|
itemKey: SelectItemKey;
|
719
779
|
hideNoData: boolean;
|
@@ -721,6 +781,8 @@ export declare const VDataTableVirtual: {
|
|
721
781
|
fixedHeader: boolean;
|
722
782
|
sortAscIcon: import("../../composables/icons.js").IconValue;
|
723
783
|
sortDescIcon: import("../../composables/icons.js").IconValue;
|
784
|
+
groupCollapseIcon: import("../../composables/icons.js").IconValue;
|
785
|
+
groupExpandIcon: import("../../composables/icons.js").IconValue;
|
724
786
|
fixedFooter: boolean;
|
725
787
|
hideDefaultBody: boolean;
|
726
788
|
hideDefaultHeader: boolean;
|
@@ -798,6 +860,8 @@ export declare const VDataTableVirtual: {
|
|
798
860
|
valueComparator: typeof import("../../util/index.js").deepEqual;
|
799
861
|
density: import("../../composables/density.js").Density;
|
800
862
|
striped: import("../VTable/VTable.js").Striped;
|
863
|
+
collapseIcon: import("../../composables/icons.js").IconValue;
|
864
|
+
expandIcon: import("../../composables/icons.js").IconValue;
|
801
865
|
itemHeight: string | number;
|
802
866
|
itemKey: SelectItemKey;
|
803
867
|
hideNoData: boolean;
|
@@ -805,6 +869,8 @@ export declare const VDataTableVirtual: {
|
|
805
869
|
fixedHeader: boolean;
|
806
870
|
sortAscIcon: import("../../composables/icons.js").IconValue;
|
807
871
|
sortDescIcon: import("../../composables/icons.js").IconValue;
|
872
|
+
groupCollapseIcon: import("../../composables/icons.js").IconValue;
|
873
|
+
groupExpandIcon: import("../../composables/icons.js").IconValue;
|
808
874
|
fixedFooter: boolean;
|
809
875
|
hideDefaultBody: boolean;
|
810
876
|
hideDefaultHeader: boolean;
|
@@ -853,6 +919,8 @@ export declare const VDataTableVirtual: {
|
|
853
919
|
valueComparator: typeof import("../../util/index.js").deepEqual;
|
854
920
|
density: import("../../composables/density.js").Density;
|
855
921
|
striped: import("../VTable/VTable.js").Striped;
|
922
|
+
collapseIcon: import("../../composables/icons.js").IconValue;
|
923
|
+
expandIcon: import("../../composables/icons.js").IconValue;
|
856
924
|
itemHeight: string | number;
|
857
925
|
itemKey: SelectItemKey;
|
858
926
|
hideNoData: boolean;
|
@@ -860,6 +928,8 @@ export declare const VDataTableVirtual: {
|
|
860
928
|
fixedHeader: boolean;
|
861
929
|
sortAscIcon: import("../../composables/icons.js").IconValue;
|
862
930
|
sortDescIcon: import("../../composables/icons.js").IconValue;
|
931
|
+
groupCollapseIcon: import("../../composables/icons.js").IconValue;
|
932
|
+
groupExpandIcon: import("../../composables/icons.js").IconValue;
|
863
933
|
fixedFooter: boolean;
|
864
934
|
hideDefaultBody: boolean;
|
865
935
|
hideDefaultHeader: boolean;
|
@@ -890,6 +960,8 @@ export declare const VDataTableVirtual: {
|
|
890
960
|
valueComparator: typeof import("../../util/index.js").deepEqual;
|
891
961
|
density: import("../../composables/density.js").Density;
|
892
962
|
striped: import("../VTable/VTable.js").Striped;
|
963
|
+
collapseIcon: import("../../composables/icons.js").IconValue;
|
964
|
+
expandIcon: import("../../composables/icons.js").IconValue;
|
893
965
|
itemHeight: string | number;
|
894
966
|
itemKey: SelectItemKey;
|
895
967
|
hideNoData: boolean;
|
@@ -897,6 +969,8 @@ export declare const VDataTableVirtual: {
|
|
897
969
|
fixedHeader: boolean;
|
898
970
|
sortAscIcon: import("../../composables/icons.js").IconValue;
|
899
971
|
sortDescIcon: import("../../composables/icons.js").IconValue;
|
972
|
+
groupCollapseIcon: import("../../composables/icons.js").IconValue;
|
973
|
+
groupExpandIcon: import("../../composables/icons.js").IconValue;
|
900
974
|
fixedFooter: boolean;
|
901
975
|
hideDefaultBody: boolean;
|
902
976
|
hideDefaultHeader: boolean;
|
@@ -951,6 +1025,8 @@ export declare const VDataTableVirtual: {
|
|
951
1025
|
valueComparator: typeof import("../../util/index.js").deepEqual;
|
952
1026
|
density: import("../../composables/density.js").Density;
|
953
1027
|
striped: import("../VTable/VTable.js").Striped;
|
1028
|
+
collapseIcon: import("../../composables/icons.js").IconValue;
|
1029
|
+
expandIcon: import("../../composables/icons.js").IconValue;
|
954
1030
|
itemHeight: string | number;
|
955
1031
|
itemKey: SelectItemKey;
|
956
1032
|
hideNoData: boolean;
|
@@ -958,6 +1034,8 @@ export declare const VDataTableVirtual: {
|
|
958
1034
|
fixedHeader: boolean;
|
959
1035
|
sortAscIcon: import("../../composables/icons.js").IconValue;
|
960
1036
|
sortDescIcon: import("../../composables/icons.js").IconValue;
|
1037
|
+
groupCollapseIcon: import("../../composables/icons.js").IconValue;
|
1038
|
+
groupExpandIcon: import("../../composables/icons.js").IconValue;
|
961
1039
|
fixedFooter: boolean;
|
962
1040
|
hideDefaultBody: boolean;
|
963
1041
|
hideDefaultHeader: boolean;
|
@@ -1120,6 +1198,14 @@ export declare const VDataTableVirtual: {
|
|
1120
1198
|
default: null;
|
1121
1199
|
validator: (v: any) => boolean;
|
1122
1200
|
};
|
1201
|
+
collapseIcon: {
|
1202
|
+
type: import("vue").PropType<import("../../composables/icons.js").IconValue>;
|
1203
|
+
default: string;
|
1204
|
+
};
|
1205
|
+
expandIcon: {
|
1206
|
+
type: import("vue").PropType<import("../../composables/icons.js").IconValue>;
|
1207
|
+
default: string;
|
1208
|
+
};
|
1123
1209
|
hideNoData: BooleanConstructor;
|
1124
1210
|
hover: BooleanConstructor;
|
1125
1211
|
fixedHeader: BooleanConstructor;
|
@@ -1131,6 +1217,14 @@ export declare const VDataTableVirtual: {
|
|
1131
1217
|
type: import("vue").PropType<import("../../composables/icons.js").IconValue>;
|
1132
1218
|
default: string;
|
1133
1219
|
};
|
1220
|
+
groupCollapseIcon: {
|
1221
|
+
type: import("vue").PropType<import("../../composables/icons.js").IconValue>;
|
1222
|
+
default: string;
|
1223
|
+
};
|
1224
|
+
groupExpandIcon: {
|
1225
|
+
type: import("vue").PropType<import("../../composables/icons.js").IconValue>;
|
1226
|
+
default: string;
|
1227
|
+
};
|
1134
1228
|
fixedFooter: BooleanConstructor;
|
1135
1229
|
hideDefaultBody: BooleanConstructor;
|
1136
1230
|
hideDefaultHeader: BooleanConstructor;
|
@@ -1240,6 +1334,14 @@ export declare const VDataTableVirtual: {
|
|
1240
1334
|
default: null;
|
1241
1335
|
validator: (v: any) => boolean;
|
1242
1336
|
};
|
1337
|
+
collapseIcon: {
|
1338
|
+
type: import("vue").PropType<import("../../composables/icons.js").IconValue>;
|
1339
|
+
default: string;
|
1340
|
+
};
|
1341
|
+
expandIcon: {
|
1342
|
+
type: import("vue").PropType<import("../../composables/icons.js").IconValue>;
|
1343
|
+
default: string;
|
1344
|
+
};
|
1243
1345
|
hideNoData: BooleanConstructor;
|
1244
1346
|
hover: BooleanConstructor;
|
1245
1347
|
fixedHeader: BooleanConstructor;
|
@@ -1251,6 +1353,14 @@ export declare const VDataTableVirtual: {
|
|
1251
1353
|
type: import("vue").PropType<import("../../composables/icons.js").IconValue>;
|
1252
1354
|
default: string;
|
1253
1355
|
};
|
1356
|
+
groupCollapseIcon: {
|
1357
|
+
type: import("vue").PropType<import("../../composables/icons.js").IconValue>;
|
1358
|
+
default: string;
|
1359
|
+
};
|
1360
|
+
groupExpandIcon: {
|
1361
|
+
type: import("vue").PropType<import("../../composables/icons.js").IconValue>;
|
1362
|
+
default: string;
|
1363
|
+
};
|
1254
1364
|
fixedFooter: BooleanConstructor;
|
1255
1365
|
hideDefaultBody: BooleanConstructor;
|
1256
1366
|
hideDefaultHeader: BooleanConstructor;
|