@vuetify/nightly 3.8.3-master.2025-05-05 → 3.8.4-master.2025-05-07
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 +3 -35
- package/dist/json/attributes.json +3324 -3324
- package/dist/json/importMap-labs.json +28 -28
- package/dist/json/importMap.json +162 -162
- package/dist/json/web-types.json +6199 -6199
- package/dist/vuetify-labs.cjs +54 -44
- package/dist/vuetify-labs.css +3363 -3359
- package/dist/vuetify-labs.d.ts +98 -98
- package/dist/vuetify-labs.esm.js +54 -44
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +54 -44
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.cjs +33 -11
- package/dist/vuetify.cjs.map +1 -1
- package/dist/vuetify.css +4003 -3999
- package/dist/vuetify.d.ts +127 -127
- package/dist/vuetify.esm.js +33 -11
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +33 -11
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +17 -14
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VAutocomplete/VAutocomplete.d.ts +3 -3
- package/lib/components/VAutocomplete/VAutocomplete.js +5 -0
- package/lib/components/VAutocomplete/VAutocomplete.js.map +1 -1
- package/lib/components/VBottomNavigation/VBottomNavigation.d.ts +6 -6
- package/lib/components/VCombobox/VCombobox.d.ts +3 -3
- package/lib/components/VDataTable/VDataTable.d.ts +110 -110
- package/lib/components/VDataTable/VDataTableHeaders.js +1 -2
- package/lib/components/VDataTable/VDataTableHeaders.js.map +1 -1
- package/lib/components/VDataTable/VDataTableServer.d.ts +55 -55
- package/lib/components/VDataTable/VDataTableVirtual.d.ts +55 -55
- package/lib/components/VDataTable/composables/headers.d.ts +75 -75
- package/lib/components/VDatePicker/VDatePicker.d.ts +3 -3
- package/lib/components/VDatePicker/VDatePickerMonth.d.ts +6 -6
- package/lib/components/VFileInput/VFileInput.css +4 -0
- package/lib/components/VFileInput/VFileInput.js +21 -3
- package/lib/components/VFileInput/VFileInput.js.map +1 -1
- package/lib/components/VFileInput/VFileInput.sass +4 -0
- package/lib/components/VNumberInput/VNumberInput.d.ts +3 -3
- package/lib/components/VOverlay/locationStrategies.js +1 -1
- package/lib/components/VOverlay/locationStrategies.js.map +1 -1
- package/lib/components/VSelect/VSelect.d.ts +3 -3
- package/lib/components/VTabs/VTabs.d.ts +6 -6
- package/lib/components/transitions/dialog-transition.js +3 -3
- package/lib/components/transitions/dialog-transition.js.map +1 -1
- package/lib/entry-bundler.d.ts +6 -6
- package/lib/entry-bundler.js +1 -1
- package/lib/framework.d.ts +57 -57
- package/lib/framework.js +1 -1
- package/lib/labs/VCalendar/VCalendar.d.ts +3 -3
- package/lib/labs/VCalendar/VCalendarDay.d.ts +3 -3
- package/lib/labs/VCalendar/VCalendarInterval.d.ts +3 -3
- package/lib/labs/VCalendar/VCalendarMonthDay.d.ts +3 -3
- package/lib/labs/VDateInput/VDateInput.d.ts +9 -9
- package/lib/labs/VFileUpload/VFileUpload.js +19 -31
- package/lib/labs/VFileUpload/VFileUpload.js.map +1 -1
- package/lib/labs/VTimePicker/VTimePickerClock.js +2 -2
- package/lib/labs/VTimePicker/VTimePickerClock.js.map +1 -1
- package/lib/util/helpers.js.map +1 -1
- package/package.json +6 -6
@@ -417,14 +417,14 @@ export declare const makeVDataTableServerProps: <Defaults extends {
|
|
417
417
|
default: unknown extends Defaults["returnObject"] ? boolean : boolean | Defaults["returnObject"];
|
418
418
|
};
|
419
419
|
headers: unknown extends Defaults["headers"] ? import("vue").PropType<readonly {
|
420
|
-
readonly key?:
|
420
|
+
readonly key?: "data-table-group" | "data-table-select" | "data-table-expand" | (string & {}) | undefined;
|
421
421
|
readonly value?: SelectItemKey<Record<string, any>>;
|
422
422
|
readonly title?: string | undefined;
|
423
423
|
readonly fixed?: boolean | undefined;
|
424
|
-
readonly align?:
|
425
|
-
readonly width?:
|
426
|
-
readonly minWidth?:
|
427
|
-
readonly maxWidth?:
|
424
|
+
readonly align?: "start" | "end" | "center" | undefined;
|
425
|
+
readonly width?: number | string | undefined;
|
426
|
+
readonly minWidth?: number | string | undefined;
|
427
|
+
readonly maxWidth?: number | string | undefined;
|
428
428
|
readonly nowrap?: boolean | undefined;
|
429
429
|
readonly headerProps?: {
|
430
430
|
readonly [x: string]: any;
|
@@ -437,14 +437,14 @@ export declare const makeVDataTableServerProps: <Defaults extends {
|
|
437
437
|
readonly sortRaw?: import("./types.js").DataTableCompareFunction | undefined;
|
438
438
|
readonly filter?: import("../../types.js").FilterFunction | undefined;
|
439
439
|
readonly children?: readonly {
|
440
|
-
readonly key?:
|
440
|
+
readonly key?: "data-table-group" | "data-table-select" | "data-table-expand" | (string & {}) | undefined;
|
441
441
|
readonly value?: SelectItemKey<Record<string, any>>;
|
442
442
|
readonly title?: string | undefined;
|
443
443
|
readonly fixed?: boolean | undefined;
|
444
|
-
readonly align?:
|
445
|
-
readonly width?:
|
446
|
-
readonly minWidth?:
|
447
|
-
readonly maxWidth?:
|
444
|
+
readonly align?: "start" | "end" | "center" | undefined;
|
445
|
+
readonly width?: number | string | undefined;
|
446
|
+
readonly minWidth?: number | string | undefined;
|
447
|
+
readonly maxWidth?: number | string | undefined;
|
448
448
|
readonly nowrap?: boolean | undefined;
|
449
449
|
readonly headerProps?: {
|
450
450
|
readonly [x: string]: any;
|
@@ -456,18 +456,18 @@ export declare const makeVDataTableServerProps: <Defaults extends {
|
|
456
456
|
readonly sort?: import("./types.js").DataTableCompareFunction | undefined;
|
457
457
|
readonly sortRaw?: import("./types.js").DataTableCompareFunction | undefined;
|
458
458
|
readonly filter?: import("../../types.js").FilterFunction | undefined;
|
459
|
-
readonly children?: readonly any[] | undefined;
|
459
|
+
readonly children?: readonly /*elided*/ any[] | undefined;
|
460
460
|
}[] | undefined;
|
461
461
|
}[]> : {
|
462
462
|
type: import("vue").PropType<unknown extends Defaults["headers"] ? readonly {
|
463
|
-
readonly key?:
|
463
|
+
readonly key?: "data-table-group" | "data-table-select" | "data-table-expand" | (string & {}) | undefined;
|
464
464
|
readonly value?: SelectItemKey<Record<string, any>>;
|
465
465
|
readonly title?: string | undefined;
|
466
466
|
readonly fixed?: boolean | undefined;
|
467
|
-
readonly align?:
|
468
|
-
readonly width?:
|
469
|
-
readonly minWidth?:
|
470
|
-
readonly maxWidth?:
|
467
|
+
readonly align?: "start" | "end" | "center" | undefined;
|
468
|
+
readonly width?: number | string | undefined;
|
469
|
+
readonly minWidth?: number | string | undefined;
|
470
|
+
readonly maxWidth?: number | string | undefined;
|
471
471
|
readonly nowrap?: boolean | undefined;
|
472
472
|
readonly headerProps?: {
|
473
473
|
readonly [x: string]: any;
|
@@ -480,14 +480,14 @@ export declare const makeVDataTableServerProps: <Defaults extends {
|
|
480
480
|
readonly sortRaw?: import("./types.js").DataTableCompareFunction | undefined;
|
481
481
|
readonly filter?: import("../../types.js").FilterFunction | undefined;
|
482
482
|
readonly children?: readonly {
|
483
|
-
readonly key?:
|
483
|
+
readonly key?: "data-table-group" | "data-table-select" | "data-table-expand" | (string & {}) | undefined;
|
484
484
|
readonly value?: SelectItemKey<Record<string, any>>;
|
485
485
|
readonly title?: string | undefined;
|
486
486
|
readonly fixed?: boolean | undefined;
|
487
|
-
readonly align?:
|
488
|
-
readonly width?:
|
489
|
-
readonly minWidth?:
|
490
|
-
readonly maxWidth?:
|
487
|
+
readonly align?: "start" | "end" | "center" | undefined;
|
488
|
+
readonly width?: number | string | undefined;
|
489
|
+
readonly minWidth?: number | string | undefined;
|
490
|
+
readonly maxWidth?: number | string | undefined;
|
491
491
|
readonly nowrap?: boolean | undefined;
|
492
492
|
readonly headerProps?: {
|
493
493
|
readonly [x: string]: any;
|
@@ -499,17 +499,17 @@ export declare const makeVDataTableServerProps: <Defaults extends {
|
|
499
499
|
readonly sort?: import("./types.js").DataTableCompareFunction | undefined;
|
500
500
|
readonly sortRaw?: import("./types.js").DataTableCompareFunction | undefined;
|
501
501
|
readonly filter?: import("../../types.js").FilterFunction | undefined;
|
502
|
-
readonly children?: readonly any[] | undefined;
|
502
|
+
readonly children?: readonly /*elided*/ any[] | undefined;
|
503
503
|
}[] | undefined;
|
504
504
|
}[] : readonly {
|
505
|
-
readonly key?:
|
505
|
+
readonly key?: "data-table-group" | "data-table-select" | "data-table-expand" | (string & {}) | undefined;
|
506
506
|
readonly value?: SelectItemKey<Record<string, any>>;
|
507
507
|
readonly title?: string | undefined;
|
508
508
|
readonly fixed?: boolean | undefined;
|
509
|
-
readonly align?:
|
510
|
-
readonly width?:
|
511
|
-
readonly minWidth?:
|
512
|
-
readonly maxWidth?:
|
509
|
+
readonly align?: "start" | "end" | "center" | undefined;
|
510
|
+
readonly width?: number | string | undefined;
|
511
|
+
readonly minWidth?: number | string | undefined;
|
512
|
+
readonly maxWidth?: number | string | undefined;
|
513
513
|
readonly nowrap?: boolean | undefined;
|
514
514
|
readonly headerProps?: {
|
515
515
|
readonly [x: string]: any;
|
@@ -522,14 +522,14 @@ export declare const makeVDataTableServerProps: <Defaults extends {
|
|
522
522
|
readonly sortRaw?: import("./types.js").DataTableCompareFunction | undefined;
|
523
523
|
readonly filter?: import("../../types.js").FilterFunction | undefined;
|
524
524
|
readonly children?: readonly {
|
525
|
-
readonly key?:
|
525
|
+
readonly key?: "data-table-group" | "data-table-select" | "data-table-expand" | (string & {}) | undefined;
|
526
526
|
readonly value?: SelectItemKey<Record<string, any>>;
|
527
527
|
readonly title?: string | undefined;
|
528
528
|
readonly fixed?: boolean | undefined;
|
529
|
-
readonly align?:
|
530
|
-
readonly width?:
|
531
|
-
readonly minWidth?:
|
532
|
-
readonly maxWidth?:
|
529
|
+
readonly align?: "start" | "end" | "center" | undefined;
|
530
|
+
readonly width?: number | string | undefined;
|
531
|
+
readonly minWidth?: number | string | undefined;
|
532
|
+
readonly maxWidth?: number | string | undefined;
|
533
533
|
readonly nowrap?: boolean | undefined;
|
534
534
|
readonly headerProps?: {
|
535
535
|
readonly [x: string]: any;
|
@@ -541,18 +541,18 @@ export declare const makeVDataTableServerProps: <Defaults extends {
|
|
541
541
|
readonly sort?: import("./types.js").DataTableCompareFunction | undefined;
|
542
542
|
readonly sortRaw?: import("./types.js").DataTableCompareFunction | undefined;
|
543
543
|
readonly filter?: import("../../types.js").FilterFunction | undefined;
|
544
|
-
readonly children?: readonly any[] | undefined;
|
544
|
+
readonly children?: readonly /*elided*/ any[] | undefined;
|
545
545
|
}[] | undefined;
|
546
546
|
}[] | Defaults["headers"]>;
|
547
547
|
default: unknown extends Defaults["headers"] ? readonly {
|
548
|
-
readonly key?:
|
548
|
+
readonly key?: "data-table-group" | "data-table-select" | "data-table-expand" | (string & {}) | undefined;
|
549
549
|
readonly value?: SelectItemKey<Record<string, any>>;
|
550
550
|
readonly title?: string | undefined;
|
551
551
|
readonly fixed?: boolean | undefined;
|
552
|
-
readonly align?:
|
553
|
-
readonly width?:
|
554
|
-
readonly minWidth?:
|
555
|
-
readonly maxWidth?:
|
552
|
+
readonly align?: "start" | "end" | "center" | undefined;
|
553
|
+
readonly width?: number | string | undefined;
|
554
|
+
readonly minWidth?: number | string | undefined;
|
555
|
+
readonly maxWidth?: number | string | undefined;
|
556
556
|
readonly nowrap?: boolean | undefined;
|
557
557
|
readonly headerProps?: {
|
558
558
|
readonly [x: string]: any;
|
@@ -565,14 +565,14 @@ export declare const makeVDataTableServerProps: <Defaults extends {
|
|
565
565
|
readonly sortRaw?: import("./types.js").DataTableCompareFunction | undefined;
|
566
566
|
readonly filter?: import("../../types.js").FilterFunction | undefined;
|
567
567
|
readonly children?: readonly {
|
568
|
-
readonly key?:
|
568
|
+
readonly key?: "data-table-group" | "data-table-select" | "data-table-expand" | (string & {}) | undefined;
|
569
569
|
readonly value?: SelectItemKey<Record<string, any>>;
|
570
570
|
readonly title?: string | undefined;
|
571
571
|
readonly fixed?: boolean | undefined;
|
572
|
-
readonly align?:
|
573
|
-
readonly width?:
|
574
|
-
readonly minWidth?:
|
575
|
-
readonly maxWidth?:
|
572
|
+
readonly align?: "start" | "end" | "center" | undefined;
|
573
|
+
readonly width?: number | string | undefined;
|
574
|
+
readonly minWidth?: number | string | undefined;
|
575
|
+
readonly maxWidth?: number | string | undefined;
|
576
576
|
readonly nowrap?: boolean | undefined;
|
577
577
|
readonly headerProps?: {
|
578
578
|
readonly [x: string]: any;
|
@@ -584,17 +584,17 @@ export declare const makeVDataTableServerProps: <Defaults extends {
|
|
584
584
|
readonly sort?: import("./types.js").DataTableCompareFunction | undefined;
|
585
585
|
readonly sortRaw?: import("./types.js").DataTableCompareFunction | undefined;
|
586
586
|
readonly filter?: import("../../types.js").FilterFunction | undefined;
|
587
|
-
readonly children?: readonly any[] | undefined;
|
587
|
+
readonly children?: readonly /*elided*/ any[] | undefined;
|
588
588
|
}[] | undefined;
|
589
589
|
}[] : readonly {
|
590
|
-
readonly key?:
|
590
|
+
readonly key?: "data-table-group" | "data-table-select" | "data-table-expand" | (string & {}) | undefined;
|
591
591
|
readonly value?: SelectItemKey<Record<string, any>>;
|
592
592
|
readonly title?: string | undefined;
|
593
593
|
readonly fixed?: boolean | undefined;
|
594
|
-
readonly align?:
|
595
|
-
readonly width?:
|
596
|
-
readonly minWidth?:
|
597
|
-
readonly maxWidth?:
|
594
|
+
readonly align?: "start" | "end" | "center" | undefined;
|
595
|
+
readonly width?: number | string | undefined;
|
596
|
+
readonly minWidth?: number | string | undefined;
|
597
|
+
readonly maxWidth?: number | string | undefined;
|
598
598
|
readonly nowrap?: boolean | undefined;
|
599
599
|
readonly headerProps?: {
|
600
600
|
readonly [x: string]: any;
|
@@ -607,14 +607,14 @@ export declare const makeVDataTableServerProps: <Defaults extends {
|
|
607
607
|
readonly sortRaw?: import("./types.js").DataTableCompareFunction | undefined;
|
608
608
|
readonly filter?: import("../../types.js").FilterFunction | undefined;
|
609
609
|
readonly children?: readonly {
|
610
|
-
readonly key?:
|
610
|
+
readonly key?: "data-table-group" | "data-table-select" | "data-table-expand" | (string & {}) | undefined;
|
611
611
|
readonly value?: SelectItemKey<Record<string, any>>;
|
612
612
|
readonly title?: string | undefined;
|
613
613
|
readonly fixed?: boolean | undefined;
|
614
|
-
readonly align?:
|
615
|
-
readonly width?:
|
616
|
-
readonly minWidth?:
|
617
|
-
readonly maxWidth?:
|
614
|
+
readonly align?: "start" | "end" | "center" | undefined;
|
615
|
+
readonly width?: number | string | undefined;
|
616
|
+
readonly minWidth?: number | string | undefined;
|
617
|
+
readonly maxWidth?: number | string | undefined;
|
618
618
|
readonly nowrap?: boolean | undefined;
|
619
619
|
readonly headerProps?: {
|
620
620
|
readonly [x: string]: any;
|
@@ -626,7 +626,7 @@ export declare const makeVDataTableServerProps: <Defaults extends {
|
|
626
626
|
readonly sort?: import("./types.js").DataTableCompareFunction | undefined;
|
627
627
|
readonly sortRaw?: import("./types.js").DataTableCompareFunction | undefined;
|
628
628
|
readonly filter?: import("../../types.js").FilterFunction | undefined;
|
629
|
-
readonly children?: readonly any[] | undefined;
|
629
|
+
readonly children?: readonly /*elided*/ any[] | undefined;
|
630
630
|
}[] | undefined;
|
631
631
|
}[] | Defaults["headers"];
|
632
632
|
};
|
@@ -189,14 +189,14 @@ export declare const makeVDataTableVirtualProps: <Defaults extends {
|
|
189
189
|
default: unknown extends Defaults["theme"] ? string : string | Defaults["theme"];
|
190
190
|
};
|
191
191
|
headers: unknown extends Defaults["headers"] ? import("vue").PropType<readonly {
|
192
|
-
readonly key?:
|
192
|
+
readonly key?: "data-table-group" | "data-table-select" | "data-table-expand" | (string & {}) | undefined;
|
193
193
|
readonly value?: SelectItemKey<Record<string, any>>;
|
194
194
|
readonly title?: string | undefined;
|
195
195
|
readonly fixed?: boolean | undefined;
|
196
|
-
readonly align?:
|
197
|
-
readonly width?:
|
198
|
-
readonly minWidth?:
|
199
|
-
readonly maxWidth?:
|
196
|
+
readonly align?: "start" | "end" | "center" | undefined;
|
197
|
+
readonly width?: number | string | undefined;
|
198
|
+
readonly minWidth?: number | string | undefined;
|
199
|
+
readonly maxWidth?: number | string | undefined;
|
200
200
|
readonly nowrap?: boolean | undefined;
|
201
201
|
readonly headerProps?: {
|
202
202
|
readonly [x: string]: any;
|
@@ -209,14 +209,14 @@ export declare const makeVDataTableVirtualProps: <Defaults extends {
|
|
209
209
|
readonly sortRaw?: import("./types.js").DataTableCompareFunction | undefined;
|
210
210
|
readonly filter?: import("../../composables/filter.js").FilterFunction | undefined;
|
211
211
|
readonly children?: readonly {
|
212
|
-
readonly key?:
|
212
|
+
readonly key?: "data-table-group" | "data-table-select" | "data-table-expand" | (string & {}) | undefined;
|
213
213
|
readonly value?: SelectItemKey<Record<string, any>>;
|
214
214
|
readonly title?: string | undefined;
|
215
215
|
readonly fixed?: boolean | undefined;
|
216
|
-
readonly align?:
|
217
|
-
readonly width?:
|
218
|
-
readonly minWidth?:
|
219
|
-
readonly maxWidth?:
|
216
|
+
readonly align?: "start" | "end" | "center" | undefined;
|
217
|
+
readonly width?: number | string | undefined;
|
218
|
+
readonly minWidth?: number | string | undefined;
|
219
|
+
readonly maxWidth?: number | string | undefined;
|
220
220
|
readonly nowrap?: boolean | undefined;
|
221
221
|
readonly headerProps?: {
|
222
222
|
readonly [x: string]: any;
|
@@ -228,18 +228,18 @@ export declare const makeVDataTableVirtualProps: <Defaults extends {
|
|
228
228
|
readonly sort?: import("./types.js").DataTableCompareFunction | undefined;
|
229
229
|
readonly sortRaw?: import("./types.js").DataTableCompareFunction | undefined;
|
230
230
|
readonly filter?: import("../../composables/filter.js").FilterFunction | undefined;
|
231
|
-
readonly children?: readonly any[] | undefined;
|
231
|
+
readonly children?: readonly /*elided*/ any[] | undefined;
|
232
232
|
}[] | undefined;
|
233
233
|
}[]> : {
|
234
234
|
type: import("vue").PropType<unknown extends Defaults["headers"] ? readonly {
|
235
|
-
readonly key?:
|
235
|
+
readonly key?: "data-table-group" | "data-table-select" | "data-table-expand" | (string & {}) | undefined;
|
236
236
|
readonly value?: SelectItemKey<Record<string, any>>;
|
237
237
|
readonly title?: string | undefined;
|
238
238
|
readonly fixed?: boolean | undefined;
|
239
|
-
readonly align?:
|
240
|
-
readonly width?:
|
241
|
-
readonly minWidth?:
|
242
|
-
readonly maxWidth?:
|
239
|
+
readonly align?: "start" | "end" | "center" | undefined;
|
240
|
+
readonly width?: number | string | undefined;
|
241
|
+
readonly minWidth?: number | string | undefined;
|
242
|
+
readonly maxWidth?: number | string | undefined;
|
243
243
|
readonly nowrap?: boolean | undefined;
|
244
244
|
readonly headerProps?: {
|
245
245
|
readonly [x: string]: any;
|
@@ -252,14 +252,14 @@ export declare const makeVDataTableVirtualProps: <Defaults extends {
|
|
252
252
|
readonly sortRaw?: import("./types.js").DataTableCompareFunction | undefined;
|
253
253
|
readonly filter?: import("../../composables/filter.js").FilterFunction | undefined;
|
254
254
|
readonly children?: readonly {
|
255
|
-
readonly key?:
|
255
|
+
readonly key?: "data-table-group" | "data-table-select" | "data-table-expand" | (string & {}) | undefined;
|
256
256
|
readonly value?: SelectItemKey<Record<string, any>>;
|
257
257
|
readonly title?: string | undefined;
|
258
258
|
readonly fixed?: boolean | undefined;
|
259
|
-
readonly align?:
|
260
|
-
readonly width?:
|
261
|
-
readonly minWidth?:
|
262
|
-
readonly maxWidth?:
|
259
|
+
readonly align?: "start" | "end" | "center" | undefined;
|
260
|
+
readonly width?: number | string | undefined;
|
261
|
+
readonly minWidth?: number | string | undefined;
|
262
|
+
readonly maxWidth?: number | string | undefined;
|
263
263
|
readonly nowrap?: boolean | undefined;
|
264
264
|
readonly headerProps?: {
|
265
265
|
readonly [x: string]: any;
|
@@ -271,17 +271,17 @@ export declare const makeVDataTableVirtualProps: <Defaults extends {
|
|
271
271
|
readonly sort?: import("./types.js").DataTableCompareFunction | undefined;
|
272
272
|
readonly sortRaw?: import("./types.js").DataTableCompareFunction | undefined;
|
273
273
|
readonly filter?: import("../../composables/filter.js").FilterFunction | undefined;
|
274
|
-
readonly children?: readonly any[] | undefined;
|
274
|
+
readonly children?: readonly /*elided*/ any[] | undefined;
|
275
275
|
}[] | undefined;
|
276
276
|
}[] : readonly {
|
277
|
-
readonly key?:
|
277
|
+
readonly key?: "data-table-group" | "data-table-select" | "data-table-expand" | (string & {}) | undefined;
|
278
278
|
readonly value?: SelectItemKey<Record<string, any>>;
|
279
279
|
readonly title?: string | undefined;
|
280
280
|
readonly fixed?: boolean | undefined;
|
281
|
-
readonly align?:
|
282
|
-
readonly width?:
|
283
|
-
readonly minWidth?:
|
284
|
-
readonly maxWidth?:
|
281
|
+
readonly align?: "start" | "end" | "center" | undefined;
|
282
|
+
readonly width?: number | string | undefined;
|
283
|
+
readonly minWidth?: number | string | undefined;
|
284
|
+
readonly maxWidth?: number | string | undefined;
|
285
285
|
readonly nowrap?: boolean | undefined;
|
286
286
|
readonly headerProps?: {
|
287
287
|
readonly [x: string]: any;
|
@@ -294,14 +294,14 @@ export declare const makeVDataTableVirtualProps: <Defaults extends {
|
|
294
294
|
readonly sortRaw?: import("./types.js").DataTableCompareFunction | undefined;
|
295
295
|
readonly filter?: import("../../composables/filter.js").FilterFunction | undefined;
|
296
296
|
readonly children?: readonly {
|
297
|
-
readonly key?:
|
297
|
+
readonly key?: "data-table-group" | "data-table-select" | "data-table-expand" | (string & {}) | undefined;
|
298
298
|
readonly value?: SelectItemKey<Record<string, any>>;
|
299
299
|
readonly title?: string | undefined;
|
300
300
|
readonly fixed?: boolean | undefined;
|
301
|
-
readonly align?:
|
302
|
-
readonly width?:
|
303
|
-
readonly minWidth?:
|
304
|
-
readonly maxWidth?:
|
301
|
+
readonly align?: "start" | "end" | "center" | undefined;
|
302
|
+
readonly width?: number | string | undefined;
|
303
|
+
readonly minWidth?: number | string | undefined;
|
304
|
+
readonly maxWidth?: number | string | undefined;
|
305
305
|
readonly nowrap?: boolean | undefined;
|
306
306
|
readonly headerProps?: {
|
307
307
|
readonly [x: string]: any;
|
@@ -313,18 +313,18 @@ export declare const makeVDataTableVirtualProps: <Defaults extends {
|
|
313
313
|
readonly sort?: import("./types.js").DataTableCompareFunction | undefined;
|
314
314
|
readonly sortRaw?: import("./types.js").DataTableCompareFunction | undefined;
|
315
315
|
readonly filter?: import("../../composables/filter.js").FilterFunction | undefined;
|
316
|
-
readonly children?: readonly any[] | undefined;
|
316
|
+
readonly children?: readonly /*elided*/ any[] | undefined;
|
317
317
|
}[] | undefined;
|
318
318
|
}[] | Defaults["headers"]>;
|
319
319
|
default: unknown extends Defaults["headers"] ? readonly {
|
320
|
-
readonly key?:
|
320
|
+
readonly key?: "data-table-group" | "data-table-select" | "data-table-expand" | (string & {}) | undefined;
|
321
321
|
readonly value?: SelectItemKey<Record<string, any>>;
|
322
322
|
readonly title?: string | undefined;
|
323
323
|
readonly fixed?: boolean | undefined;
|
324
|
-
readonly align?:
|
325
|
-
readonly width?:
|
326
|
-
readonly minWidth?:
|
327
|
-
readonly maxWidth?:
|
324
|
+
readonly align?: "start" | "end" | "center" | undefined;
|
325
|
+
readonly width?: number | string | undefined;
|
326
|
+
readonly minWidth?: number | string | undefined;
|
327
|
+
readonly maxWidth?: number | string | undefined;
|
328
328
|
readonly nowrap?: boolean | undefined;
|
329
329
|
readonly headerProps?: {
|
330
330
|
readonly [x: string]: any;
|
@@ -337,14 +337,14 @@ export declare const makeVDataTableVirtualProps: <Defaults extends {
|
|
337
337
|
readonly sortRaw?: import("./types.js").DataTableCompareFunction | undefined;
|
338
338
|
readonly filter?: import("../../composables/filter.js").FilterFunction | undefined;
|
339
339
|
readonly children?: readonly {
|
340
|
-
readonly key?:
|
340
|
+
readonly key?: "data-table-group" | "data-table-select" | "data-table-expand" | (string & {}) | undefined;
|
341
341
|
readonly value?: SelectItemKey<Record<string, any>>;
|
342
342
|
readonly title?: string | undefined;
|
343
343
|
readonly fixed?: boolean | undefined;
|
344
|
-
readonly align?:
|
345
|
-
readonly width?:
|
346
|
-
readonly minWidth?:
|
347
|
-
readonly maxWidth?:
|
344
|
+
readonly align?: "start" | "end" | "center" | undefined;
|
345
|
+
readonly width?: number | string | undefined;
|
346
|
+
readonly minWidth?: number | string | undefined;
|
347
|
+
readonly maxWidth?: number | string | undefined;
|
348
348
|
readonly nowrap?: boolean | undefined;
|
349
349
|
readonly headerProps?: {
|
350
350
|
readonly [x: string]: any;
|
@@ -356,17 +356,17 @@ export declare const makeVDataTableVirtualProps: <Defaults extends {
|
|
356
356
|
readonly sort?: import("./types.js").DataTableCompareFunction | undefined;
|
357
357
|
readonly sortRaw?: import("./types.js").DataTableCompareFunction | undefined;
|
358
358
|
readonly filter?: import("../../composables/filter.js").FilterFunction | undefined;
|
359
|
-
readonly children?: readonly any[] | undefined;
|
359
|
+
readonly children?: readonly /*elided*/ any[] | undefined;
|
360
360
|
}[] | undefined;
|
361
361
|
}[] : readonly {
|
362
|
-
readonly key?:
|
362
|
+
readonly key?: "data-table-group" | "data-table-select" | "data-table-expand" | (string & {}) | undefined;
|
363
363
|
readonly value?: SelectItemKey<Record<string, any>>;
|
364
364
|
readonly title?: string | undefined;
|
365
365
|
readonly fixed?: boolean | undefined;
|
366
|
-
readonly align?:
|
367
|
-
readonly width?:
|
368
|
-
readonly minWidth?:
|
369
|
-
readonly maxWidth?:
|
366
|
+
readonly align?: "start" | "end" | "center" | undefined;
|
367
|
+
readonly width?: number | string | undefined;
|
368
|
+
readonly minWidth?: number | string | undefined;
|
369
|
+
readonly maxWidth?: number | string | undefined;
|
370
370
|
readonly nowrap?: boolean | undefined;
|
371
371
|
readonly headerProps?: {
|
372
372
|
readonly [x: string]: any;
|
@@ -379,14 +379,14 @@ export declare const makeVDataTableVirtualProps: <Defaults extends {
|
|
379
379
|
readonly sortRaw?: import("./types.js").DataTableCompareFunction | undefined;
|
380
380
|
readonly filter?: import("../../composables/filter.js").FilterFunction | undefined;
|
381
381
|
readonly children?: readonly {
|
382
|
-
readonly key?:
|
382
|
+
readonly key?: "data-table-group" | "data-table-select" | "data-table-expand" | (string & {}) | undefined;
|
383
383
|
readonly value?: SelectItemKey<Record<string, any>>;
|
384
384
|
readonly title?: string | undefined;
|
385
385
|
readonly fixed?: boolean | undefined;
|
386
|
-
readonly align?:
|
387
|
-
readonly width?:
|
388
|
-
readonly minWidth?:
|
389
|
-
readonly maxWidth?:
|
386
|
+
readonly align?: "start" | "end" | "center" | undefined;
|
387
|
+
readonly width?: number | string | undefined;
|
388
|
+
readonly minWidth?: number | string | undefined;
|
389
|
+
readonly maxWidth?: number | string | undefined;
|
390
390
|
readonly nowrap?: boolean | undefined;
|
391
391
|
readonly headerProps?: {
|
392
392
|
readonly [x: string]: any;
|
@@ -398,7 +398,7 @@ export declare const makeVDataTableVirtualProps: <Defaults extends {
|
|
398
398
|
readonly sort?: import("./types.js").DataTableCompareFunction | undefined;
|
399
399
|
readonly sortRaw?: import("./types.js").DataTableCompareFunction | undefined;
|
400
400
|
readonly filter?: import("../../composables/filter.js").FilterFunction | undefined;
|
401
|
-
readonly children?: readonly any[] | undefined;
|
401
|
+
readonly children?: readonly /*elided*/ any[] | undefined;
|
402
402
|
}[] | undefined;
|
403
403
|
}[] | Defaults["headers"];
|
404
404
|
};
|