@@ -230,7 +230,6 @@ export interface TopSlotProps extends VDataTableSlotProps {
230
230
} ;
231
231
232
232
export interface HeaderSlotProps extends AllSlotProps {
233
- allSelected ?: boolean ;
234
233
isTheadSlot ?: boolean ;
235
234
items : Props [ 'items' ] ;
236
235
loaderSettings : {
@@ -245,7 +244,6 @@ export interface HeaderSlotProps extends AllSlotProps {
245
244
} ;
246
245
selectStrategy : Props [ 'selectStrategy' ] ;
247
246
slotProps : {
248
- allRowsSelected : boolean ;
249
247
allSelected ?: boolean ;
250
248
columns : Column [ ] ;
251
249
getSortIcon : GetSortIcon ;
@@ -262,7 +260,6 @@ export interface HeaderSlotProps extends AllSlotProps {
262
260
263
261
export interface THeadSlotProps extends AllSlotProps {
264
262
slotProps : {
265
- allRowsSelected : boolean ;
266
263
columns : Column [ ] ;
267
264
getSortIcon ?: GetSortIcon ;
268
265
index ?: number ;
@@ -281,7 +278,6 @@ export interface ItemSlotProps extends Omit<AllSlotProps, 'colors' | 'sortBy'> {
281
278
levels : Props [ 'levels' ] ;
282
279
showExpand : Props [ 'showExpand' ] ;
283
280
slotProps : {
284
- allRowsSelected : boolean ;
285
281
columns : Column [ ] ;
286
282
index ?: number ;
287
283
isExpanded : IsExpanded ;
@@ -295,8 +291,10 @@ export interface ItemSlotProps extends Omit<AllSlotProps, 'colors' | 'sortBy'> {
295
291
296
292
export interface TFootSlotProps extends Omit < AllSlotProps , 'showSelect' | 'sortBy' > {
297
293
footers : Column [ ] ;
294
+ items : Props [ 'items' ] ;
295
+ selectStrategy : Props [ 'selectStrategy' ] ;
298
296
slotProps : {
299
- allRowsSelected : boolean ;
297
+ allSelected ? : boolean ;
300
298
columns : Column [ ] ;
301
299
getFixedStyles ?: ( column : InternalDataTableHeader , y : number ) => CSSProperties | undefined ;
302
300
getSortIcon ?: GetSortIcon ;
@@ -311,6 +309,7 @@ export interface TFootSlotProps extends Omit<AllSlotProps, 'showSelect' | 'sortB
311
309
toggleSelect : ToggleExpandSelect ;
312
310
toggleSort ?: ToggleSort ;
313
311
} ;
312
+ tableModelValue ?: Props [ 'modelValue' ] ;
314
313
}
315
314
316
315
0 commit comments