@vuetify/nightly 3.7.7-master.2025-01-22 → 3.7.7-master.2025-01-23
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 +7 -3
- package/dist/json/attributes.json +3475 -3471
- package/dist/json/importMap-labs.json +24 -24
- package/dist/json/importMap.json +142 -142
- package/dist/json/tags.json +1 -0
- package/dist/json/web-types.json +6229 -6219
- package/dist/vuetify-labs.css +4637 -4637
- package/dist/vuetify-labs.d.ts +38 -29
- package/dist/vuetify-labs.esm.js +21 -17
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +21 -17
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +3296 -3296
- package/dist/vuetify.d.ts +90 -81
- package/dist/vuetify.esm.js +21 -17
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +21 -17
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +10 -10
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VDataTable/VDataTable.mjs +3 -1
- package/lib/components/VDataTable/VDataTable.mjs.map +1 -1
- package/lib/components/VDataTable/VDataTableHeaders.mjs +6 -4
- package/lib/components/VDataTable/VDataTableHeaders.mjs.map +1 -1
- package/lib/components/VDataTable/VDataTableServer.mjs +5 -5
- package/lib/components/VDataTable/VDataTableServer.mjs.map +1 -1
- package/lib/components/VDataTable/VDataTableVirtual.mjs +5 -5
- package/lib/components/VDataTable/VDataTableVirtual.mjs.map +1 -1
- package/lib/components/VDataTable/index.d.mts +38 -29
- package/lib/components/VSlider/slider.mjs +2 -2
- package/lib/components/VSlider/slider.mjs.map +1 -1
- package/lib/components/index.d.mts +38 -29
- package/lib/entry-bundler.mjs +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/index.d.mts +52 -52
- package/package.json +1 -1
package/dist/vuetify.d.ts
CHANGED
@@ -24170,6 +24170,7 @@ declare const VDataTableHeaders: {
|
|
24170
24170
|
sticky: boolean;
|
24171
24171
|
multiSort: boolean;
|
24172
24172
|
disableSort: boolean;
|
24173
|
+
fixedHeader: boolean;
|
24173
24174
|
sortAscIcon: IconValue;
|
24174
24175
|
sortDescIcon: IconValue;
|
24175
24176
|
} & {
|
@@ -24203,6 +24204,7 @@ declare const VDataTableHeaders: {
|
|
24203
24204
|
sticky: boolean;
|
24204
24205
|
multiSort: boolean;
|
24205
24206
|
disableSort: boolean;
|
24207
|
+
fixedHeader: boolean;
|
24206
24208
|
sortAscIcon: IconValue;
|
24207
24209
|
sortDescIcon: IconValue;
|
24208
24210
|
} & {
|
@@ -24236,6 +24238,7 @@ declare const VDataTableHeaders: {
|
|
24236
24238
|
sticky: boolean;
|
24237
24239
|
multiSort: boolean;
|
24238
24240
|
disableSort: boolean;
|
24241
|
+
fixedHeader: boolean;
|
24239
24242
|
sortAscIcon: IconValue;
|
24240
24243
|
sortDescIcon: IconValue;
|
24241
24244
|
}, true, {}, vue.SlotsType<Partial<{
|
@@ -24256,6 +24259,7 @@ declare const VDataTableHeaders: {
|
|
24256
24259
|
sticky: boolean;
|
24257
24260
|
multiSort: boolean;
|
24258
24261
|
disableSort: boolean;
|
24262
|
+
fixedHeader: boolean;
|
24259
24263
|
sortAscIcon: IconValue;
|
24260
24264
|
sortDescIcon: IconValue;
|
24261
24265
|
} & {
|
@@ -24289,6 +24293,7 @@ declare const VDataTableHeaders: {
|
|
24289
24293
|
sticky: boolean;
|
24290
24294
|
multiSort: boolean;
|
24291
24295
|
disableSort: boolean;
|
24296
|
+
fixedHeader: boolean;
|
24292
24297
|
sortAscIcon: IconValue;
|
24293
24298
|
sortDescIcon: IconValue;
|
24294
24299
|
}>;
|
@@ -24300,6 +24305,7 @@ declare const VDataTableHeaders: {
|
|
24300
24305
|
sticky: boolean;
|
24301
24306
|
multiSort: boolean;
|
24302
24307
|
disableSort: boolean;
|
24308
|
+
fixedHeader: boolean;
|
24303
24309
|
sortAscIcon: IconValue;
|
24304
24310
|
sortDescIcon: IconValue;
|
24305
24311
|
} & {
|
@@ -24333,6 +24339,7 @@ declare const VDataTableHeaders: {
|
|
24333
24339
|
sticky: boolean;
|
24334
24340
|
multiSort: boolean;
|
24335
24341
|
disableSort: boolean;
|
24342
|
+
fixedHeader: boolean;
|
24336
24343
|
sortAscIcon: IconValue;
|
24337
24344
|
sortDescIcon: IconValue;
|
24338
24345
|
}, {}, string, vue.SlotsType<Partial<{
|
@@ -24349,8 +24356,8 @@ declare const VDataTableHeaders: {
|
|
24349
24356
|
};
|
24350
24357
|
mobileBreakpoint: PropType<number | DisplayBreakpoint>;
|
24351
24358
|
color: StringConstructor;
|
24352
|
-
sticky: BooleanConstructor;
|
24353
24359
|
disableSort: BooleanConstructor;
|
24360
|
+
fixedHeader: BooleanConstructor;
|
24354
24361
|
multiSort: BooleanConstructor;
|
24355
24362
|
sortAscIcon: {
|
24356
24363
|
type: PropType<IconValue>;
|
@@ -24363,6 +24370,7 @@ declare const VDataTableHeaders: {
|
|
24363
24370
|
headerProps: {
|
24364
24371
|
type: PropType<Record<string, any>>;
|
24365
24372
|
};
|
24373
|
+
sticky: BooleanConstructor;
|
24366
24374
|
}, vue.ExtractPropTypes<{
|
24367
24375
|
loading: (StringConstructor | BooleanConstructor)[];
|
24368
24376
|
mobile: {
|
@@ -24371,8 +24379,8 @@ declare const VDataTableHeaders: {
|
|
24371
24379
|
};
|
24372
24380
|
mobileBreakpoint: PropType<number | DisplayBreakpoint>;
|
24373
24381
|
color: StringConstructor;
|
24374
|
-
sticky: BooleanConstructor;
|
24375
24382
|
disableSort: BooleanConstructor;
|
24383
|
+
fixedHeader: BooleanConstructor;
|
24376
24384
|
multiSort: BooleanConstructor;
|
24377
24385
|
sortAscIcon: {
|
24378
24386
|
type: PropType<IconValue>;
|
@@ -24385,6 +24393,7 @@ declare const VDataTableHeaders: {
|
|
24385
24393
|
headerProps: {
|
24386
24394
|
type: PropType<Record<string, any>>;
|
24387
24395
|
};
|
24396
|
+
sticky: BooleanConstructor;
|
24388
24397
|
}>>;
|
24389
24398
|
type VDataTableHeaders = InstanceType<typeof VDataTableHeaders>;
|
24390
24399
|
|
@@ -24770,9 +24779,9 @@ declare const VDataTable: {
|
|
24770
24779
|
value: number;
|
24771
24780
|
})[];
|
24772
24781
|
showCurrentPage: boolean;
|
24782
|
+
fixedHeader: boolean;
|
24773
24783
|
sortAscIcon: IconValue;
|
24774
24784
|
sortDescIcon: IconValue;
|
24775
|
-
fixedHeader: boolean;
|
24776
24785
|
fixedFooter: boolean;
|
24777
24786
|
hideDefaultBody: boolean;
|
24778
24787
|
hideDefaultFooter: boolean;
|
@@ -24849,9 +24858,9 @@ declare const VDataTable: {
|
|
24849
24858
|
value: number;
|
24850
24859
|
})[];
|
24851
24860
|
showCurrentPage: boolean;
|
24861
|
+
fixedHeader: boolean;
|
24852
24862
|
sortAscIcon: IconValue;
|
24853
24863
|
sortDescIcon: IconValue;
|
24854
|
-
fixedHeader: boolean;
|
24855
24864
|
fixedFooter: boolean;
|
24856
24865
|
hideDefaultBody: boolean;
|
24857
24866
|
hideDefaultFooter: boolean;
|
@@ -24919,9 +24928,9 @@ declare const VDataTable: {
|
|
24919
24928
|
value: number;
|
24920
24929
|
})[];
|
24921
24930
|
showCurrentPage: boolean;
|
24931
|
+
fixedHeader: boolean;
|
24922
24932
|
sortAscIcon: IconValue;
|
24923
24933
|
sortDescIcon: IconValue;
|
24924
|
-
fixedHeader: boolean;
|
24925
24934
|
fixedFooter: boolean;
|
24926
24935
|
hideDefaultBody: boolean;
|
24927
24936
|
hideDefaultFooter: boolean;
|
@@ -25019,9 +25028,9 @@ declare const VDataTable: {
|
|
25019
25028
|
value: number;
|
25020
25029
|
})[];
|
25021
25030
|
showCurrentPage: boolean;
|
25031
|
+
fixedHeader: boolean;
|
25022
25032
|
sortAscIcon: IconValue;
|
25023
25033
|
sortDescIcon: IconValue;
|
25024
|
-
fixedHeader: boolean;
|
25025
25034
|
fixedFooter: boolean;
|
25026
25035
|
hideDefaultBody: boolean;
|
25027
25036
|
hideDefaultFooter: boolean;
|
@@ -25089,9 +25098,9 @@ declare const VDataTable: {
|
|
25089
25098
|
value: number;
|
25090
25099
|
})[];
|
25091
25100
|
showCurrentPage: boolean;
|
25101
|
+
fixedHeader: boolean;
|
25092
25102
|
sortAscIcon: IconValue;
|
25093
25103
|
sortDescIcon: IconValue;
|
25094
|
-
fixedHeader: boolean;
|
25095
25104
|
fixedFooter: boolean;
|
25096
25105
|
hideDefaultBody: boolean;
|
25097
25106
|
hideDefaultFooter: boolean;
|
@@ -25141,9 +25150,9 @@ declare const VDataTable: {
|
|
25141
25150
|
value: number;
|
25142
25151
|
})[];
|
25143
25152
|
showCurrentPage: boolean;
|
25153
|
+
fixedHeader: boolean;
|
25144
25154
|
sortAscIcon: IconValue;
|
25145
25155
|
sortDescIcon: IconValue;
|
25146
|
-
fixedHeader: boolean;
|
25147
25156
|
fixedFooter: boolean;
|
25148
25157
|
hideDefaultBody: boolean;
|
25149
25158
|
hideDefaultFooter: boolean;
|
@@ -25220,9 +25229,9 @@ declare const VDataTable: {
|
|
25220
25229
|
value: number;
|
25221
25230
|
})[];
|
25222
25231
|
showCurrentPage: boolean;
|
25232
|
+
fixedHeader: boolean;
|
25223
25233
|
sortAscIcon: IconValue;
|
25224
25234
|
sortDescIcon: IconValue;
|
25225
|
-
fixedHeader: boolean;
|
25226
25235
|
fixedFooter: boolean;
|
25227
25236
|
hideDefaultBody: boolean;
|
25228
25237
|
hideDefaultFooter: boolean;
|
@@ -25367,7 +25376,6 @@ declare const VDataTable: {
|
|
25367
25376
|
};
|
25368
25377
|
mobileBreakpoint: vue.PropType<number | DisplayBreakpoint>;
|
25369
25378
|
color: StringConstructor;
|
25370
|
-
sticky: BooleanConstructor;
|
25371
25379
|
disableSort: BooleanConstructor;
|
25372
25380
|
multiSort: BooleanConstructor;
|
25373
25381
|
sortAscIcon: {
|
@@ -25381,6 +25389,7 @@ declare const VDataTable: {
|
|
25381
25389
|
headerProps: {
|
25382
25390
|
type: vue.PropType<Record<string, any>>;
|
25383
25391
|
};
|
25392
|
+
sticky: BooleanConstructor;
|
25384
25393
|
sortBy: {
|
25385
25394
|
type: vue.PropType<readonly SortItem[]>;
|
25386
25395
|
default: () => never[];
|
@@ -25534,7 +25543,6 @@ declare const VDataTable: {
|
|
25534
25543
|
};
|
25535
25544
|
mobileBreakpoint: vue.PropType<number | DisplayBreakpoint>;
|
25536
25545
|
color: StringConstructor;
|
25537
|
-
sticky: BooleanConstructor;
|
25538
25546
|
disableSort: BooleanConstructor;
|
25539
25547
|
multiSort: BooleanConstructor;
|
25540
25548
|
sortAscIcon: {
|
@@ -25548,6 +25556,7 @@ declare const VDataTable: {
|
|
25548
25556
|
headerProps: {
|
25549
25557
|
type: vue.PropType<Record<string, any>>;
|
25550
25558
|
};
|
25559
|
+
sticky: BooleanConstructor;
|
25551
25560
|
sortBy: {
|
25552
25561
|
type: vue.PropType<readonly SortItem[]>;
|
25553
25562
|
default: () => never[];
|
@@ -25928,9 +25937,9 @@ declare const VDataTableVirtual: {
|
|
25928
25937
|
showSelect: boolean;
|
25929
25938
|
expandOnClick: boolean;
|
25930
25939
|
showExpand: boolean;
|
25940
|
+
fixedHeader: boolean;
|
25931
25941
|
sortAscIcon: IconValue;
|
25932
25942
|
sortDescIcon: IconValue;
|
25933
|
-
fixedHeader: boolean;
|
25934
25943
|
fixedFooter: boolean;
|
25935
25944
|
hideDefaultBody: boolean;
|
25936
25945
|
hideDefaultFooter: boolean;
|
@@ -26030,9 +26039,9 @@ declare const VDataTableVirtual: {
|
|
26030
26039
|
showSelect: boolean;
|
26031
26040
|
expandOnClick: boolean;
|
26032
26041
|
showExpand: boolean;
|
26042
|
+
fixedHeader: boolean;
|
26033
26043
|
sortAscIcon: IconValue;
|
26034
26044
|
sortDescIcon: IconValue;
|
26035
|
-
fixedHeader: boolean;
|
26036
26045
|
fixedFooter: boolean;
|
26037
26046
|
hideDefaultBody: boolean;
|
26038
26047
|
hideDefaultFooter: boolean;
|
@@ -26126,9 +26135,9 @@ declare const VDataTableVirtual: {
|
|
26126
26135
|
showSelect: boolean;
|
26127
26136
|
expandOnClick: boolean;
|
26128
26137
|
showExpand: boolean;
|
26138
|
+
fixedHeader: boolean;
|
26129
26139
|
sortAscIcon: IconValue;
|
26130
26140
|
sortDescIcon: IconValue;
|
26131
|
-
fixedHeader: boolean;
|
26132
26141
|
fixedFooter: boolean;
|
26133
26142
|
hideDefaultBody: boolean;
|
26134
26143
|
hideDefaultFooter: boolean;
|
@@ -26206,9 +26215,9 @@ declare const VDataTableVirtual: {
|
|
26206
26215
|
showSelect: boolean;
|
26207
26216
|
expandOnClick: boolean;
|
26208
26217
|
showExpand: boolean;
|
26218
|
+
fixedHeader: boolean;
|
26209
26219
|
sortAscIcon: IconValue;
|
26210
26220
|
sortDescIcon: IconValue;
|
26211
|
-
fixedHeader: boolean;
|
26212
26221
|
fixedFooter: boolean;
|
26213
26222
|
hideDefaultBody: boolean;
|
26214
26223
|
hideDefaultFooter: boolean;
|
@@ -26302,9 +26311,9 @@ declare const VDataTableVirtual: {
|
|
26302
26311
|
showSelect: boolean;
|
26303
26312
|
expandOnClick: boolean;
|
26304
26313
|
showExpand: boolean;
|
26314
|
+
fixedHeader: boolean;
|
26305
26315
|
sortAscIcon: IconValue;
|
26306
26316
|
sortDescIcon: IconValue;
|
26307
|
-
fixedHeader: boolean;
|
26308
26317
|
fixedFooter: boolean;
|
26309
26318
|
hideDefaultBody: boolean;
|
26310
26319
|
hideDefaultFooter: boolean;
|
@@ -26338,9 +26347,9 @@ declare const VDataTableVirtual: {
|
|
26338
26347
|
showSelect: boolean;
|
26339
26348
|
expandOnClick: boolean;
|
26340
26349
|
showExpand: boolean;
|
26350
|
+
fixedHeader: boolean;
|
26341
26351
|
sortAscIcon: IconValue;
|
26342
26352
|
sortDescIcon: IconValue;
|
26343
|
-
fixedHeader: boolean;
|
26344
26353
|
fixedFooter: boolean;
|
26345
26354
|
hideDefaultBody: boolean;
|
26346
26355
|
hideDefaultFooter: boolean;
|
@@ -26440,9 +26449,9 @@ declare const VDataTableVirtual: {
|
|
26440
26449
|
showSelect: boolean;
|
26441
26450
|
expandOnClick: boolean;
|
26442
26451
|
showExpand: boolean;
|
26452
|
+
fixedHeader: boolean;
|
26443
26453
|
sortAscIcon: IconValue;
|
26444
26454
|
sortDescIcon: IconValue;
|
26445
|
-
fixedHeader: boolean;
|
26446
26455
|
fixedFooter: boolean;
|
26447
26456
|
hideDefaultBody: boolean;
|
26448
26457
|
hideDefaultFooter: boolean;
|
@@ -26539,7 +26548,6 @@ declare const VDataTableVirtual: {
|
|
26539
26548
|
};
|
26540
26549
|
mobileBreakpoint: vue.PropType<number | DisplayBreakpoint>;
|
26541
26550
|
color: StringConstructor;
|
26542
|
-
sticky: BooleanConstructor;
|
26543
26551
|
disableSort: BooleanConstructor;
|
26544
26552
|
multiSort: BooleanConstructor;
|
26545
26553
|
sortAscIcon: {
|
@@ -26553,6 +26561,7 @@ declare const VDataTableVirtual: {
|
|
26553
26561
|
headerProps: {
|
26554
26562
|
type: vue.PropType<Record<string, any>>;
|
26555
26563
|
};
|
26564
|
+
sticky: BooleanConstructor;
|
26556
26565
|
sortBy: {
|
26557
26566
|
type: vue.PropType<readonly SortItem[]>;
|
26558
26567
|
default: () => never[];
|
@@ -26651,7 +26660,6 @@ declare const VDataTableVirtual: {
|
|
26651
26660
|
};
|
26652
26661
|
mobileBreakpoint: vue.PropType<number | DisplayBreakpoint>;
|
26653
26662
|
color: StringConstructor;
|
26654
|
-
sticky: BooleanConstructor;
|
26655
26663
|
disableSort: BooleanConstructor;
|
26656
26664
|
multiSort: BooleanConstructor;
|
26657
26665
|
sortAscIcon: {
|
@@ -26665,6 +26673,7 @@ declare const VDataTableVirtual: {
|
|
26665
26673
|
headerProps: {
|
26666
26674
|
type: vue.PropType<Record<string, any>>;
|
26667
26675
|
};
|
26676
|
+
sticky: BooleanConstructor;
|
26668
26677
|
sortBy: {
|
26669
26678
|
type: vue.PropType<readonly SortItem[]>;
|
26670
26679
|
default: () => never[];
|
@@ -26765,9 +26774,9 @@ declare const VDataTableServer: {
|
|
26765
26774
|
value: number;
|
26766
26775
|
})[];
|
26767
26776
|
showCurrentPage: boolean;
|
26777
|
+
fixedHeader: boolean;
|
26768
26778
|
sortAscIcon: IconValue;
|
26769
26779
|
sortDescIcon: IconValue;
|
26770
|
-
fixedHeader: boolean;
|
26771
26780
|
fixedFooter: boolean;
|
26772
26781
|
hideDefaultBody: boolean;
|
26773
26782
|
hideDefaultFooter: boolean;
|
@@ -26883,9 +26892,9 @@ declare const VDataTableServer: {
|
|
26883
26892
|
value: number;
|
26884
26893
|
})[];
|
26885
26894
|
showCurrentPage: boolean;
|
26895
|
+
fixedHeader: boolean;
|
26886
26896
|
sortAscIcon: IconValue;
|
26887
26897
|
sortDescIcon: IconValue;
|
26888
|
-
fixedHeader: boolean;
|
26889
26898
|
fixedFooter: boolean;
|
26890
26899
|
hideDefaultBody: boolean;
|
26891
26900
|
hideDefaultFooter: boolean;
|
@@ -26992,9 +27001,9 @@ declare const VDataTableServer: {
|
|
26992
27001
|
value: number;
|
26993
27002
|
})[];
|
26994
27003
|
showCurrentPage: boolean;
|
27004
|
+
fixedHeader: boolean;
|
26995
27005
|
sortAscIcon: IconValue;
|
26996
27006
|
sortDescIcon: IconValue;
|
26997
|
-
fixedHeader: boolean;
|
26998
27007
|
fixedFooter: boolean;
|
26999
27008
|
hideDefaultBody: boolean;
|
27000
27009
|
hideDefaultFooter: boolean;
|
@@ -27091,9 +27100,9 @@ declare const VDataTableServer: {
|
|
27091
27100
|
value: number;
|
27092
27101
|
})[];
|
27093
27102
|
showCurrentPage: boolean;
|
27103
|
+
fixedHeader: boolean;
|
27094
27104
|
sortAscIcon: IconValue;
|
27095
27105
|
sortDescIcon: IconValue;
|
27096
|
-
fixedHeader: boolean;
|
27097
27106
|
fixedFooter: boolean;
|
27098
27107
|
hideDefaultBody: boolean;
|
27099
27108
|
hideDefaultFooter: boolean;
|
@@ -27200,9 +27209,9 @@ declare const VDataTableServer: {
|
|
27200
27209
|
value: number;
|
27201
27210
|
})[];
|
27202
27211
|
showCurrentPage: boolean;
|
27212
|
+
fixedHeader: boolean;
|
27203
27213
|
sortAscIcon: IconValue;
|
27204
27214
|
sortDescIcon: IconValue;
|
27205
|
-
fixedHeader: boolean;
|
27206
27215
|
fixedFooter: boolean;
|
27207
27216
|
hideDefaultBody: boolean;
|
27208
27217
|
hideDefaultFooter: boolean;
|
@@ -27251,9 +27260,9 @@ declare const VDataTableServer: {
|
|
27251
27260
|
value: number;
|
27252
27261
|
})[];
|
27253
27262
|
showCurrentPage: boolean;
|
27263
|
+
fixedHeader: boolean;
|
27254
27264
|
sortAscIcon: IconValue;
|
27255
27265
|
sortDescIcon: IconValue;
|
27256
|
-
fixedHeader: boolean;
|
27257
27266
|
fixedFooter: boolean;
|
27258
27267
|
hideDefaultBody: boolean;
|
27259
27268
|
hideDefaultFooter: boolean;
|
@@ -27368,9 +27377,9 @@ declare const VDataTableServer: {
|
|
27368
27377
|
value: number;
|
27369
27378
|
})[];
|
27370
27379
|
showCurrentPage: boolean;
|
27380
|
+
fixedHeader: boolean;
|
27371
27381
|
sortAscIcon: IconValue;
|
27372
27382
|
sortDescIcon: IconValue;
|
27373
|
-
fixedHeader: boolean;
|
27374
27383
|
fixedFooter: boolean;
|
27375
27384
|
hideDefaultBody: boolean;
|
27376
27385
|
hideDefaultFooter: boolean;
|
@@ -27506,7 +27515,6 @@ declare const VDataTableServer: {
|
|
27506
27515
|
};
|
27507
27516
|
mobileBreakpoint: vue.PropType<number | DisplayBreakpoint>;
|
27508
27517
|
color: StringConstructor;
|
27509
|
-
sticky: BooleanConstructor;
|
27510
27518
|
disableSort: BooleanConstructor;
|
27511
27519
|
multiSort: BooleanConstructor;
|
27512
27520
|
sortAscIcon: {
|
@@ -27520,6 +27528,7 @@ declare const VDataTableServer: {
|
|
27520
27528
|
headerProps: {
|
27521
27529
|
type: vue.PropType<Record<string, any>>;
|
27522
27530
|
};
|
27531
|
+
sticky: BooleanConstructor;
|
27523
27532
|
sortBy: {
|
27524
27533
|
type: vue.PropType<readonly SortItem[]>;
|
27525
27534
|
default: () => never[];
|
@@ -27669,7 +27678,6 @@ declare const VDataTableServer: {
|
|
27669
27678
|
};
|
27670
27679
|
mobileBreakpoint: vue.PropType<number | DisplayBreakpoint>;
|
27671
27680
|
color: StringConstructor;
|
27672
|
-
sticky: BooleanConstructor;
|
27673
27681
|
disableSort: BooleanConstructor;
|
27674
27682
|
multiSort: BooleanConstructor;
|
27675
27683
|
sortAscIcon: {
|
@@ -27683,6 +27691,7 @@ declare const VDataTableServer: {
|
|
27683
27691
|
headerProps: {
|
27684
27692
|
type: vue.PropType<Record<string, any>>;
|
27685
27693
|
};
|
27694
|
+
sticky: BooleanConstructor;
|
27686
27695
|
sortBy: {
|
27687
27696
|
type: vue.PropType<readonly SortItem[]>;
|
27688
27697
|
default: () => never[];
|
@@ -67098,29 +67107,26 @@ declare module 'vue' {
|
|
67098
67107
|
export interface GlobalComponents {
|
67099
67108
|
VAlert: typeof import('vuetify/components')['VAlert']
|
67100
67109
|
VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
|
67101
|
-
VApp: typeof import('vuetify/components')['VApp']
|
67102
67110
|
VAppBar: typeof import('vuetify/components')['VAppBar']
|
67103
67111
|
VAppBarNavIcon: typeof import('vuetify/components')['VAppBarNavIcon']
|
67104
67112
|
VAppBarTitle: typeof import('vuetify/components')['VAppBarTitle']
|
67113
|
+
VApp: typeof import('vuetify/components')['VApp']
|
67114
|
+
VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
|
67105
67115
|
VBadge: typeof import('vuetify/components')['VBadge']
|
67116
|
+
VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
|
67117
|
+
VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
|
67106
67118
|
VAvatar: typeof import('vuetify/components')['VAvatar']
|
67107
|
-
|
67119
|
+
VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
|
67108
67120
|
VBtn: typeof import('vuetify/components')['VBtn']
|
67121
|
+
VCarousel: typeof import('vuetify/components')['VCarousel']
|
67122
|
+
VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
|
67109
67123
|
VBanner: typeof import('vuetify/components')['VBanner']
|
67110
67124
|
VBannerActions: typeof import('vuetify/components')['VBannerActions']
|
67111
67125
|
VBannerText: typeof import('vuetify/components')['VBannerText']
|
67112
|
-
VCarousel: typeof import('vuetify/components')['VCarousel']
|
67113
|
-
VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
|
67114
|
-
VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
|
67115
67126
|
VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
|
67116
|
-
VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
|
67117
67127
|
VBreadcrumbs: typeof import('vuetify/components')['VBreadcrumbs']
|
67118
67128
|
VBreadcrumbsItem: typeof import('vuetify/components')['VBreadcrumbsItem']
|
67119
67129
|
VBreadcrumbsDivider: typeof import('vuetify/components')['VBreadcrumbsDivider']
|
67120
|
-
VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
|
67121
|
-
VCheckbox: typeof import('vuetify/components')['VCheckbox']
|
67122
|
-
VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
|
67123
|
-
VCode: typeof import('vuetify/components')['VCode']
|
67124
67130
|
VCard: typeof import('vuetify/components')['VCard']
|
67125
67131
|
VCardActions: typeof import('vuetify/components')['VCardActions']
|
67126
67132
|
VCardItem: typeof import('vuetify/components')['VCardItem']
|
@@ -67128,15 +67134,18 @@ declare module 'vue' {
|
|
67128
67134
|
VCardText: typeof import('vuetify/components')['VCardText']
|
67129
67135
|
VCardTitle: typeof import('vuetify/components')['VCardTitle']
|
67130
67136
|
VChip: typeof import('vuetify/components')['VChip']
|
67131
|
-
|
67132
|
-
|
67137
|
+
VCode: typeof import('vuetify/components')['VCode']
|
67138
|
+
VCheckbox: typeof import('vuetify/components')['VCheckbox']
|
67139
|
+
VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
|
67133
67140
|
VColorPicker: typeof import('vuetify/components')['VColorPicker']
|
67141
|
+
VCombobox: typeof import('vuetify/components')['VCombobox']
|
67134
67142
|
VDatePicker: typeof import('vuetify/components')['VDatePicker']
|
67135
67143
|
VDatePickerControls: typeof import('vuetify/components')['VDatePickerControls']
|
67136
67144
|
VDatePickerHeader: typeof import('vuetify/components')['VDatePickerHeader']
|
67137
67145
|
VDatePickerMonth: typeof import('vuetify/components')['VDatePickerMonth']
|
67138
67146
|
VDatePickerMonths: typeof import('vuetify/components')['VDatePickerMonths']
|
67139
67147
|
VDatePickerYears: typeof import('vuetify/components')['VDatePickerYears']
|
67148
|
+
VChipGroup: typeof import('vuetify/components')['VChipGroup']
|
67140
67149
|
VDataTable: typeof import('vuetify/components')['VDataTable']
|
67141
67150
|
VDataTableHeaders: typeof import('vuetify/components')['VDataTableHeaders']
|
67142
67151
|
VDataTableFooter: typeof import('vuetify/components')['VDataTableFooter']
|
@@ -67144,32 +67153,30 @@ declare module 'vue' {
|
|
67144
67153
|
VDataTableRow: typeof import('vuetify/components')['VDataTableRow']
|
67145
67154
|
VDataTableVirtual: typeof import('vuetify/components')['VDataTableVirtual']
|
67146
67155
|
VDataTableServer: typeof import('vuetify/components')['VDataTableServer']
|
67147
|
-
|
67148
|
-
VEmptyState: typeof import('vuetify/components')['VEmptyState']
|
67156
|
+
VDialog: typeof import('vuetify/components')['VDialog']
|
67149
67157
|
VDivider: typeof import('vuetify/components')['VDivider']
|
67150
67158
|
VExpansionPanels: typeof import('vuetify/components')['VExpansionPanels']
|
67151
67159
|
VExpansionPanel: typeof import('vuetify/components')['VExpansionPanel']
|
67152
67160
|
VExpansionPanelText: typeof import('vuetify/components')['VExpansionPanelText']
|
67153
67161
|
VExpansionPanelTitle: typeof import('vuetify/components')['VExpansionPanelTitle']
|
67154
|
-
|
67155
|
-
VFileInput: typeof import('vuetify/components')['VFileInput']
|
67156
|
-
VFooter: typeof import('vuetify/components')['VFooter']
|
67162
|
+
VEmptyState: typeof import('vuetify/components')['VEmptyState']
|
67157
67163
|
VFab: typeof import('vuetify/components')['VFab']
|
67164
|
+
VFooter: typeof import('vuetify/components')['VFooter']
|
67158
67165
|
VField: typeof import('vuetify/components')['VField']
|
67159
67166
|
VFieldLabel: typeof import('vuetify/components')['VFieldLabel']
|
67160
|
-
|
67161
|
-
VInput: typeof import('vuetify/components')['VInput']
|
67167
|
+
VFileInput: typeof import('vuetify/components')['VFileInput']
|
67162
67168
|
VIcon: typeof import('vuetify/components')['VIcon']
|
67163
67169
|
VComponentIcon: typeof import('vuetify/components')['VComponentIcon']
|
67164
67170
|
VSvgIcon: typeof import('vuetify/components')['VSvgIcon']
|
67165
67171
|
VLigatureIcon: typeof import('vuetify/components')['VLigatureIcon']
|
67166
67172
|
VClassIcon: typeof import('vuetify/components')['VClassIcon']
|
67173
|
+
VCounter: typeof import('vuetify/components')['VCounter']
|
67174
|
+
VImg: typeof import('vuetify/components')['VImg']
|
67175
|
+
VInput: typeof import('vuetify/components')['VInput']
|
67176
|
+
VMain: typeof import('vuetify/components')['VMain']
|
67167
67177
|
VInfiniteScroll: typeof import('vuetify/components')['VInfiniteScroll']
|
67168
67178
|
VItemGroup: typeof import('vuetify/components')['VItemGroup']
|
67169
67179
|
VItem: typeof import('vuetify/components')['VItem']
|
67170
|
-
VKbd: typeof import('vuetify/components')['VKbd']
|
67171
|
-
VLabel: typeof import('vuetify/components')['VLabel']
|
67172
|
-
VMain: typeof import('vuetify/components')['VMain']
|
67173
67180
|
VList: typeof import('vuetify/components')['VList']
|
67174
67181
|
VListGroup: typeof import('vuetify/components')['VListGroup']
|
67175
67182
|
VListImg: typeof import('vuetify/components')['VListImg']
|
@@ -67179,69 +67186,71 @@ declare module 'vue' {
|
|
67179
67186
|
VListItemSubtitle: typeof import('vuetify/components')['VListItemSubtitle']
|
67180
67187
|
VListItemTitle: typeof import('vuetify/components')['VListItemTitle']
|
67181
67188
|
VListSubheader: typeof import('vuetify/components')['VListSubheader']
|
67189
|
+
VLabel: typeof import('vuetify/components')['VLabel']
|
67182
67190
|
VMenu: typeof import('vuetify/components')['VMenu']
|
67183
|
-
VNavigationDrawer: typeof import('vuetify/components')['VNavigationDrawer']
|
67184
67191
|
VMessages: typeof import('vuetify/components')['VMessages']
|
67185
|
-
|
67186
|
-
|
67187
|
-
VPagination: typeof import('vuetify/components')['VPagination']
|
67188
|
-
VRadioGroup: typeof import('vuetify/components')['VRadioGroup']
|
67192
|
+
VKbd: typeof import('vuetify/components')['VKbd']
|
67193
|
+
VNavigationDrawer: typeof import('vuetify/components')['VNavigationDrawer']
|
67189
67194
|
VOtpInput: typeof import('vuetify/components')['VOtpInput']
|
67190
67195
|
VProgressCircular: typeof import('vuetify/components')['VProgressCircular']
|
67191
|
-
|
67192
|
-
|
67196
|
+
VPagination: typeof import('vuetify/components')['VPagination']
|
67197
|
+
VRadioGroup: typeof import('vuetify/components')['VRadioGroup']
|
67198
|
+
VProgressLinear: typeof import('vuetify/components')['VProgressLinear']
|
67199
|
+
VOverlay: typeof import('vuetify/components')['VOverlay']
|
67193
67200
|
VRating: typeof import('vuetify/components')['VRating']
|
67194
|
-
|
67195
|
-
|
67201
|
+
VSelectionControl: typeof import('vuetify/components')['VSelectionControl']
|
67202
|
+
VSelect: typeof import('vuetify/components')['VSelect']
|
67196
67203
|
VSlider: typeof import('vuetify/components')['VSlider']
|
67204
|
+
VSkeletonLoader: typeof import('vuetify/components')['VSkeletonLoader']
|
67205
|
+
VSystemBar: typeof import('vuetify/components')['VSystemBar']
|
67197
67206
|
VSlideGroup: typeof import('vuetify/components')['VSlideGroup']
|
67198
67207
|
VSlideGroupItem: typeof import('vuetify/components')['VSlideGroupItem']
|
67208
|
+
VSnackbar: typeof import('vuetify/components')['VSnackbar']
|
67199
67209
|
VStepper: typeof import('vuetify/components')['VStepper']
|
67200
67210
|
VStepperActions: typeof import('vuetify/components')['VStepperActions']
|
67201
67211
|
VStepperHeader: typeof import('vuetify/components')['VStepperHeader']
|
67202
67212
|
VStepperItem: typeof import('vuetify/components')['VStepperItem']
|
67203
67213
|
VStepperWindow: typeof import('vuetify/components')['VStepperWindow']
|
67204
67214
|
VStepperWindowItem: typeof import('vuetify/components')['VStepperWindowItem']
|
67205
|
-
VSnackbar: typeof import('vuetify/components')['VSnackbar']
|
67206
67215
|
VSwitch: typeof import('vuetify/components')['VSwitch']
|
67207
|
-
|
67208
|
-
VTable: typeof import('vuetify/components')['VTable']
|
67216
|
+
VSheet: typeof import('vuetify/components')['VSheet']
|
67209
67217
|
VTab: typeof import('vuetify/components')['VTab']
|
67210
67218
|
VTabs: typeof import('vuetify/components')['VTabs']
|
67211
67219
|
VTabsWindow: typeof import('vuetify/components')['VTabsWindow']
|
67212
67220
|
VTabsWindowItem: typeof import('vuetify/components')['VTabsWindowItem']
|
67221
|
+
VTable: typeof import('vuetify/components')['VTable']
|
67213
67222
|
VTextarea: typeof import('vuetify/components')['VTextarea']
|
67214
67223
|
VTimeline: typeof import('vuetify/components')['VTimeline']
|
67215
67224
|
VTimelineItem: typeof import('vuetify/components')['VTimelineItem']
|
67216
|
-
VTextField: typeof import('vuetify/components')['VTextField']
|
67217
|
-
VWindow: typeof import('vuetify/components')['VWindow']
|
67218
|
-
VWindowItem: typeof import('vuetify/components')['VWindowItem']
|
67219
|
-
VTooltip: typeof import('vuetify/components')['VTooltip']
|
67220
67225
|
VToolbar: typeof import('vuetify/components')['VToolbar']
|
67221
67226
|
VToolbarTitle: typeof import('vuetify/components')['VToolbarTitle']
|
67222
67227
|
VToolbarItems: typeof import('vuetify/components')['VToolbarItems']
|
67223
|
-
|
67228
|
+
VTextField: typeof import('vuetify/components')['VTextField']
|
67229
|
+
VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
|
67230
|
+
VTooltip: typeof import('vuetify/components')['VTooltip']
|
67231
|
+
VWindow: typeof import('vuetify/components')['VWindow']
|
67232
|
+
VWindowItem: typeof import('vuetify/components')['VWindowItem']
|
67224
67233
|
VConfirmEdit: typeof import('vuetify/components')['VConfirmEdit']
|
67225
|
-
VDataIterator: typeof import('vuetify/components')['VDataIterator']
|
67226
67234
|
VDefaultsProvider: typeof import('vuetify/components')['VDefaultsProvider']
|
67235
|
+
VDataIterator: typeof import('vuetify/components')['VDataIterator']
|
67236
|
+
VForm: typeof import('vuetify/components')['VForm']
|
67227
67237
|
VContainer: typeof import('vuetify/components')['VContainer']
|
67228
67238
|
VCol: typeof import('vuetify/components')['VCol']
|
67229
67239
|
VRow: typeof import('vuetify/components')['VRow']
|
67230
67240
|
VSpacer: typeof import('vuetify/components')['VSpacer']
|
67231
|
-
VForm: typeof import('vuetify/components')['VForm']
|
67232
67241
|
VHover: typeof import('vuetify/components')['VHover']
|
67233
67242
|
VLazy: typeof import('vuetify/components')['VLazy']
|
67234
67243
|
VLayout: typeof import('vuetify/components')['VLayout']
|
67235
67244
|
VLayoutItem: typeof import('vuetify/components')['VLayoutItem']
|
67236
|
-
VLocaleProvider: typeof import('vuetify/components')['VLocaleProvider']
|
67237
67245
|
VNoSsr: typeof import('vuetify/components')['VNoSsr']
|
67246
|
+
VLocaleProvider: typeof import('vuetify/components')['VLocaleProvider']
|
67238
67247
|
VRadio: typeof import('vuetify/components')['VRadio']
|
67248
|
+
VParallax: typeof import('vuetify/components')['VParallax']
|
67239
67249
|
VRangeSlider: typeof import('vuetify/components')['VRangeSlider']
|
67240
67250
|
VResponsive: typeof import('vuetify/components')['VResponsive']
|
67241
|
-
VParallax: typeof import('vuetify/components')['VParallax']
|
67242
67251
|
VSparkline: typeof import('vuetify/components')['VSparkline']
|
67243
|
-
VThemeProvider: typeof import('vuetify/components')['VThemeProvider']
|
67244
67252
|
VSpeedDial: typeof import('vuetify/components')['VSpeedDial']
|
67253
|
+
VThemeProvider: typeof import('vuetify/components')['VThemeProvider']
|
67245
67254
|
VValidation: typeof import('vuetify/components')['VValidation']
|
67246
67255
|
VVirtualScroll: typeof import('vuetify/components')['VVirtualScroll']
|
67247
67256
|
VFabTransition: typeof import('vuetify/components')['VFabTransition']
|
@@ -67260,28 +67269,28 @@ declare module 'vue' {
|
|
67260
67269
|
VExpandTransition: typeof import('vuetify/components')['VExpandTransition']
|
67261
67270
|
VExpandXTransition: typeof import('vuetify/components')['VExpandXTransition']
|
67262
67271
|
VDialogTransition: typeof import('vuetify/components')['VDialogTransition']
|
67263
|
-
VFileUpload: typeof import('vuetify/labs/components')['VFileUpload']
|
67264
|
-
VFileUploadItem: typeof import('vuetify/labs/components')['VFileUploadItem']
|
67265
67272
|
VCalendar: typeof import('vuetify/labs/components')['VCalendar']
|
67266
67273
|
VCalendarDay: typeof import('vuetify/labs/components')['VCalendarDay']
|
67267
67274
|
VCalendarHeader: typeof import('vuetify/labs/components')['VCalendarHeader']
|
67268
67275
|
VCalendarInterval: typeof import('vuetify/labs/components')['VCalendarInterval']
|
67269
67276
|
VCalendarIntervalEvent: typeof import('vuetify/labs/components')['VCalendarIntervalEvent']
|
67270
67277
|
VCalendarMonthDay: typeof import('vuetify/labs/components')['VCalendarMonthDay']
|
67271
|
-
VNumberInput: typeof import('vuetify/labs/components')['VNumberInput']
|
67272
67278
|
VPicker: typeof import('vuetify/labs/components')['VPicker']
|
67273
67279
|
VPickerTitle: typeof import('vuetify/labs/components')['VPickerTitle']
|
67280
|
+
VNumberInput: typeof import('vuetify/labs/components')['VNumberInput']
|
67274
67281
|
VStepperVertical: typeof import('vuetify/labs/components')['VStepperVertical']
|
67275
67282
|
VStepperVerticalItem: typeof import('vuetify/labs/components')['VStepperVerticalItem']
|
67276
67283
|
VStepperVerticalActions: typeof import('vuetify/labs/components')['VStepperVerticalActions']
|
67277
|
-
VTimePicker: typeof import('vuetify/labs/components')['VTimePicker']
|
67278
|
-
VTimePickerClock: typeof import('vuetify/labs/components')['VTimePickerClock']
|
67279
|
-
VTimePickerControls: typeof import('vuetify/labs/components')['VTimePickerControls']
|
67280
67284
|
VTreeview: typeof import('vuetify/labs/components')['VTreeview']
|
67281
67285
|
VTreeviewItem: typeof import('vuetify/labs/components')['VTreeviewItem']
|
67282
67286
|
VTreeviewGroup: typeof import('vuetify/labs/components')['VTreeviewGroup']
|
67283
|
-
|
67284
|
-
|
67287
|
+
VTimePicker: typeof import('vuetify/labs/components')['VTimePicker']
|
67288
|
+
VTimePickerClock: typeof import('vuetify/labs/components')['VTimePickerClock']
|
67289
|
+
VTimePickerControls: typeof import('vuetify/labs/components')['VTimePickerControls']
|
67290
|
+
VFileUpload: typeof import('vuetify/labs/components')['VFileUpload']
|
67291
|
+
VFileUploadItem: typeof import('vuetify/labs/components')['VFileUploadItem']
|
67285
67292
|
VSnackbarQueue: typeof import('vuetify/labs/components')['VSnackbarQueue']
|
67293
|
+
VPullToRefresh: typeof import('vuetify/labs/components')['VPullToRefresh']
|
67294
|
+
VDateInput: typeof import('vuetify/labs/components')['VDateInput']
|
67286
67295
|
}
|
67287
67296
|
}
|