-
Notifications
You must be signed in to change notification settings - Fork 1.1k
/
datatable.d.ts
1866 lines (1802 loc) · 56.1 KB
/
datatable.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/**
*
* DataTable displays data in tabular format.
*
* [Live Demo](https://www.primereact.org/datatable/)
*
* @module datatable
*
*/
import * as React from 'react';
import { Column, ColumnPassThroughOptions, ColumnProps } from '../column';
import { ColumnGroupPassThroughOptions } from '../columngroup/columngroup';
import { ComponentHooks } from '../componentbase/componentbase';
import { PaginatorPassThroughOptions, PaginatorTemplate } from '../paginator';
import { PassThroughOptions } from '../passthrough';
import { RowPassThroughOptions } from '../row/row';
import { TooltipPassThroughOptions } from '../tooltip/tooltip';
import { IconType, PassThroughType } from '../utils/utils';
import { VirtualScroller, VirtualScrollerPassThroughOptions, VirtualScrollerProps } from '../virtualscroller/virtualscroller';
type DataTableHeaderTemplateType<TValue extends DataTableValueArray> = React.ReactNode | ((options: DataTableHeaderTemplateOptions<TValue>) => React.ReactNode);
type DataTableFooterTemplateType<TValue extends DataTableValueArray> = React.ReactNode | ((options: DataTableFooterTemplateOptions<TValue>) => React.ReactNode);
type DataTableRowGroupHeaderTemplateType<TValue extends DataTableValueArray> = React.ReactNode | ((data: any, options: DataTableRowGroupHeaderTemplateOptions<TValue>) => React.ReactNode);
type DataTableRowGroupFooterTemplateType<TValue extends DataTableValueArray> = React.ReactNode | ((data: any, options: DataTableRowGroupFooterTemplateOptions<TValue>) => React.ReactNode);
/**
* Custom datatable header template options.
*/
interface DataTableHeaderTemplateOptions<TValue extends DataTableValueArray> {
/**
* The props of the datatable.
*/
props: DataTableProps<TValue>;
}
interface DataTableFooterTemplateOptions<TValue extends DataTableValueArray> extends DataTableHeaderTemplateOptions<TValue> {}
/**
* Custom datatable row group header template options.
*/
interface DataTableRowGroupHeaderTemplateOptions<TValue extends DataTableValueArray> {
/**
* index of the row group header template.
*/
index: number;
/**
* The props of the datatable.
*/
props: DataTableProps<TValue>;
/**
* Used to override the rendering of the content.
*/
customRendering: boolean;
}
/**
* Custom datatable row group footer template options.
*/
interface DataTableRowGroupFooterTemplateOptions<T extends DataTableValueArray> extends DataTableRowGroupHeaderTemplateOptions<T> {
/**
* Number of columns to span for grouping.
*/
colSpan: number;
}
/**
* Custom datatable sort meta
*/
interface DataTableSortMeta {
/**
* Column field to sort against.
*/
field: string;
/**
* Sort order as integer.
*/
order: 1 | 0 | -1 | null | undefined;
}
/**
* Custom datatable filter metadata.
*/
interface DataTableFilterMetaData {
/**
* Value to filter against.
*/
value: any;
/**
* Type of filter match.
*/
matchMode: 'startsWith' | 'contains' | 'notContains' | 'endsWith' | 'equals' | 'notEquals' | 'in' | 'lt' | 'lte' | 'gt' | 'gte' | 'between' | 'dateIs' | 'dateIsNot' | 'dateBefore' | 'dateAfter' | 'custom' | undefined;
}
/**
* Custom datatable operator filter metadata.
*/
interface DataTableOperatorFilterMetaData {
/**
* Operator to use for filtering.
*/
operator: string;
/**
* Operator to use for filtering.
*/
constraints: DataTableFilterMetaData[];
}
/**
* Custom datatable filter meta.
*/
interface DataTableFilterMeta {
/**
* Extra options.
*/
[key: string]: DataTableFilterMetaData | DataTableOperatorFilterMetaData;
}
/**
* Custom datatable expanded rows.
*/
interface DataTableExpandedRows {
[key: string]: boolean;
}
/**
* Custom datatable editing rows.
*/
interface DataTableEditingRows {
[key: string]: boolean;
}
/**
* Custom row toggle event.
* @see {@link DataTableProps.onRowToggle}
* @event
*/
interface DataTableRowToggleEvent {
/**
* Expanded rows.
*/
data: any[] | DataTableExpandedRows;
}
/**
* Custom resize end event.
* @see {@link DataTableProps.onColumnResizeEnd}
* @event
*/
interface DataTableColumnResizeEndEvent {
/**
* DOM element of the resized column.
*/
element: HTMLElement;
/**
* Properties of the resized column.
*/
column: Column;
/**
* Change in column width.
*/
delta: number;
}
/**
* Custom column resizer click event.
* @see {@link DataTableProps.onColumnResizerClick}, {@link DataTableProps.onColumnResizerDoubleClick}
* @event
*/
interface DataTableColumnResizerClickEvent {
/**
* Browser event.
*/
originalEvent: React.MouseEvent<HTMLElement>;
/**
* DOM element of the column.
*/
element: HTMLElement;
/**
* Properties of the column.
*/
column: Column;
}
/**
* Custom pagination event
* @see {@link DataTableProps.onPage}
* @event
*/
interface DataTablePageEvent {
/**
* Index of the first row.
*/
first: number;
/**
* Rows per page.
*/
rows: number;
/**
* The page number of the datatable.
*/
page?: number;
/**
* Total number of pages.
*/
pageCount?: number;
/**
* Extra options.
*/
[key: string]: any;
}
/**
* Custom sort event.
* @see {@link DataTableProps.onSort}
* @event
*/
interface DataTableSortEvent {
/**
* Field to sort against.
*/
sortField: string;
/**
* Sort order as integer.
*/
sortOrder: 1 | 0 | -1 | null | undefined;
/**
* MultiSort metadata.
*/
multiSortMeta: DataTableSortMeta[] | null | undefined;
/**
* Extra options.
*/
[key: string]: any;
}
/**
* Custom filter event.
* @see {@link DataTableProps.onFilter}
* @event
*/
interface DataTableFilterEvent {
/**
* Collection of active filters.
*/
filters: DataTableFilterMeta;
/**
* Extra options.
*/
[key: string]: any;
}
/**
* Custom state event containing page, filter and sort states.
* @see {@link DataTableProps.onFilter}
* @see {@link DataTableProps.onSort}
* @see {@link DataTableProps.onPage}
* @event
*/
interface DataTableStateEvent extends DataTablePageEvent, DataTableFilterEvent, DataTableSortEvent {
/**
* Extra options.
*/
[key: string]: any;
}
/**
* Custom data selectable event.
* @see {@link DataTableProps.isDataSelectable}
* @event
*/
interface DataTableDataSelectableEvent {
/**
* Original data of the row.
*/
data: DataTableValue;
/**
* Index of the row.
*/
index: number;
}
/**
* Custom selection change event for context menu in single select mode.
* @see {@link DataTableProps.onContextMenuSelectionChange}
* @event
*/
interface DataTableContextMenuSingleSelectionChangeEvent<TValue extends DataTableValueArray> {
/**
* Browser event.
*/
originalEvent: React.SyntheticEvent;
/**
* Selection object.
*/
value: TValue[number];
}
/**
* Custom selection change event for context menu in multiple select mode.
* @see {@link DataTableProps.onContextMenuSelectionChange}
* @event
*/
interface DataTableContextMenuMultipleSelectionChangeEvent<TValue extends DataTableValueArray> {
/**
* Browser event.
*/
originalEvent: React.SyntheticEvent;
/**
* Selection object.
*/
value: TValue;
}
/**
* Custom multiple selection change event.
* @see {@link DataTableProps.onSelectionChange}
* @event
*/
interface DataTableSelectionMultipleChangeEvent<TValue extends DataTableValueArray> {
/**
* Browser event.
*/
originalEvent: React.SyntheticEvent;
/**
* Selection objects.
*/
value: TValue;
/**
* Type of the selection.
*/
type?: 'multiple' | 'all' | 'checkbox' | 'row' | undefined;
/**
* Extra options.
*/
[key: string]: any;
}
/**
* Custom single selection change event.
* @see {@link DataTableProps.onSelectionChange}
* @event
*/
interface DataTableSelectionSingleChangeEvent<TValue extends DataTableValueArray> {
/**
* Browser event.
*/
originalEvent: React.SyntheticEvent;
/**
* Selection object.
*/
value: TValue[number];
/**
* Type of the selection.
*/
type?: 'single' | 'radio' | 'row';
/**
* Extra options.
*/
[key: string]: any;
}
/**
* Custom cell selection change event.
* @see {@link DataTableProps.onSelectionChange}
* @event
*/
interface DataTableSelectionCellChangeEvent<TValue extends DataTableValueArray> {
/**
* Browser event.
*/
originalEvent: React.SyntheticEvent;
/**
* Selection objects.
*/
value: DataTableCellSelection<TValue>;
/**
* Type of the selection.
*/
type?: 'cell';
/**
* Extra options.
*/
[key: string]: any;
}
/**
* Custom select all change event.
* @see {@link DataTableProps.onSelectAllChange}
*/
interface DataTableSelectAllChangeEvent {
/**
* Browser event.
*/
originalEvent: React.SyntheticEvent;
/**
* Whether all data is selected.
*/
checked: boolean;
}
/**
* Custom context menu event.
* @see {@link DataTableProps.onContextMenu}, {@link DataTableProps.onRowCollapse}, {@link DataTableProps.onRowExpand}
* @event
*/
interface DataTableRowEvent {
/**
* Original event instance.
*/
originalEvent: React.SyntheticEvent;
/**
* Original rows data.
*/
data: DataTableValue;
}
/**
* Custom row mouse event.
* @see {@link DataTableProps.onRowMouseEnter}, {@link DataTableProps.onRowMouseLeave}
* @extends DataTableRowEvent
*/
interface DataTableRowMouseEvent extends Omit<DataTableRowEvent, 'originalEvent'> {
/**
* Browser event.
*/
originalEvent: React.MouseEvent<HTMLElement>;
/**
* Clicked row data index
*/
index: number;
}
/**
* Custom row pointer event.
* @see {@link DataTableProps.onRowPointerDown}, {@link DataTableProps.onRowPointerUp}
* @extends DataTableRowMouseEvent
* @event
*/
interface DataTableRowPointerEvent extends Omit<DataTableRowEvent, 'originalEvent'> {
/**
* Browser event.
*/
originalEvent: React.PointerEvent<HTMLElement>;
/**
* Clicked row data index
*/
index: number;
}
/**
* Custom row click event.
* @see {@link DataTableProps.onRowClick}, {@link DataTableProps.onRowDoubleClick}
* @extends DataTableRowMouseEvent
* @event
*/
interface DataTableRowClickEvent extends DataTableRowMouseEvent {}
/**
* Custom cell click event.
* @see {@link DataTableProps.onCellClick}
*/
interface DataTableCellClickEvent<TValue extends DataTableValueArray> {
/**
* Browser event.
*/
originalEvent: React.MouseEvent<HTMLElement>;
/**
* Value of the cell.
*/
value: any;
/**
* Column field.
*/
field: string;
/**
* Data of the row.
*/
rowData: DataTableRowData<TValue>;
/**
* Index of the row.
*/
rowIndex: number;
/**
* Index of the cell.
*/
cellIndex: number;
/**
* Whether the cell is selected or not.
*/
selected: boolean;
}
/**
* Custom row edit event.
* @see {@link DataTableProps.onRowEditInit}, {@link DataTableProps.onRowEditChange}, {@link DataTableProps.onRowEditCancel}
* @extends DataTableRowEvent
* @event
*/
interface DataTableRowEditEvent extends DataTableRowEvent {
/**
* Index of the row.
*/
index: number;
}
/**
* Custom row edit save event.
* @see {@link DataTableProps.onRowEditSave}
* @extends DataTableRowEditEvent
*/
interface DataTableRowEditSaveEvent extends DataTableRowEditEvent {
/**
* Whether the row is valid or not.
*/
valid: boolean;
}
/**
* Custom row edit complete event.
* @see {@link DataTableProps.onRowEditComplete}
* @extends DataTableRowEvent
* @event
*/
interface DataTableRowEditCompleteEvent extends DataTableRowEvent {
/**
* Editing rows data.
*/
newData: DataTableValue;
/**
* Column field.
*/
field: string;
/**
* Current editing row data index.
*/
index: number;
}
/**
* Custom select event.
* @see {@link DataTableProps.onAllRowsSelect}, {@link DataTableProps.onRowSelect}
* @event
*/
interface DataTableSelectEvent {
/**
* Browser event.
*/
originalEvent: React.SyntheticEvent;
/**
* Selected rows data.
*/
data: any;
/**
* Type of the selection, valid value is "all".
*/
type: 'row' | 'cell' | 'checkbox' | 'radio' | 'all' | undefined;
}
/**
* Custom unselect event.
* @see {@link DataTableProps.onAllRowsUnselect}, {@link DataTableProps.onRowUnselect}
* @extends DataTableSelectEvent
* @event
*/
interface DataTableUnselectEvent extends DataTableSelectEvent {}
/**
* Custom export function event.
* @see {@link DataTableProps.exportFunction}
* @event
*/
interface DataTableExportFunctionEvent<TValue extends DataTableValueArray> {
/**
* Field data.
*/
data: DataTableRowDataArray<TValue>;
/**
* Column field.
*/
field: string;
/**
* Data of the row.
*/
rowData: DataTableRowData<TValue>;
/**
* Column.
*/
column: Column;
}
/**
* Custom column reorder event.
* @see {@link DataTableProps.onColReorder}
* @event
*/
interface DataTableColReorderEvent {
/**
* Browser event.
*/
originalEvent: React.DragEvent<HTMLElement>;
/**
* Index of the dragged column.
*/
dragIndex: number;
/**
* Index of the dropped column.
*/
dropIndex: number;
/**
* Columns array after reorder.
*/
columns: React.ReactElement;
}
/**
* Custom column reorder event.
* @see {@link DataTableProps.onRowReorder}
* @event
*/
interface DataTableRowReorderEvent<TValue extends DataTableValueArray> {
/**
* Browser event.
*/
originalEvent: React.DragEvent<HTMLElement>;
/**
* New value after reorder.
*/
value: DataTableRowDataArray<TValue>;
/**
* Index of the dragged row.
*/
dragIndex: number;
/**
* Index of the drop location.
*/
dropIndex: number;
}
/**
* Options for the row expansion template
* @see {@link DataTableProps.rowExpansionTemplate}
*/
interface DataTableRowExpansionTemplate {
/**
* Index of the row.
*/
index: number;
/**
* Used to override the rendering of the content.
*/
customRendering: boolean;
}
/**
* Custom row className options.
* @see {@link DataTableProps.rowClassName}
*/
interface DataTableRowClassNameOptions<TValue extends DataTableValueArray> {
/**
* The props of the datatable.
*/
props: DataTableProps<TValue>;
}
/**
* Custom cell className options.
* @see {@link DataTableProps.cellClassName}
*/
interface DataTableCellClassNameOptions<TValue extends DataTableValueArray> {
/**
* The props of the datatable.
*/
props: DataTableProps<TValue>;
/**
* Column element of the datatable.
*/
column: Column;
/**
* Column field.
*/
field: string;
/**
* Whether the row is frozen or not.
* @defaultValue false
*/
frozenRow: boolean;
/**
* Index of the row.
*/
rowIndex: number;
}
/**
* Custom show selection element options.
* @see {@link DataTableProps.showSelectionElement}
*/
interface DataTableShowSelectionElementOptions<TValue extends DataTableValueArray> {
/**
* Index of the row.
*/
rowIndex: number;
/**
* The props of the datatable.
*/
props: DataTableProps<TValue>;
}
/**
* Custom show row reorder element options.
* @see {@link DataTableProps.showRowReorderElement}
*/
interface DataTableShowRowReorderElementOptions<TValue extends DataTableValueArray> {
/**
* Index of the row element.
*/
rowIndex: number;
/**
* The props of the datatable.
*/
props: DataTableProps<TValue>;
}
/**
* Custom row edit validator options.
* @see {@link DataTableProps.rowEditValidator}
*/
interface DataTableRowEditValidatorOptions<TValue extends DataTableValueArray> {
/**
* The props of the datatable.
*/
props: DataTableProps<TValue>;
}
/**
* Custom value definition.
* @extends Record<string, any>
*/
interface DataTableValue extends Record<string, any> {}
/**
* Custom value array definition.
* @extends Array<DataTableValue>
*/
interface DataTableValueArray extends Array<DataTableValue> {}
type DataTableRowData<TValueArray extends DataTableValueArray> = TValueArray extends Array<infer TValue> ? TValue : never;
type DataTableRowDataArray<TValue extends DataTableValueArray> = DataTableRowData<TValue>[];
type DataTableCellSelection<TValue extends DataTableValueArray> = {
/**
* Index of the cell.
*/
cellIndex: number;
/**
* Column element of the datatable.
*/
column: Column;
/**
* Column field.
*/
field: string;
/**
* Properties of the column.
*/
props: ColumnProps;
/**
* Data of the row.
*/
rowData: DataTableRowData<TValue>;
/**
* Index of the row.
*/
rowIndex: number;
/**
* Whether the row is selected or not.
*/
selected: boolean;
/**
* Value of the cell.
*/
value: TValue[number][keyof TValue[number]];
};
export declare type DataTablePassThroughType<T> = PassThroughType<T, DataTablePassThroughMethodOptions<DataTableValueArray>>;
/**
* Custom passthrough(pt) option method.
*/
export interface DataTablePassThroughMethodOptions<TValue extends DataTableValueArray> {
props: DataTableProps<TValue>;
state: DataTableState;
context: DataTableContext;
}
/**
* Defines current inline state in DataTable component.
*/
export interface DataTableState {
/**
* Current index of first record as a number.
*/
first: number;
/**
* Current number of rows to display in new page as a number.
*/
rows: number;
/**
* Current sort field.
*/
sortField: string | ((item: any) => string) | undefined;
/**
* Current order to sort the data by default.
*/
sortOrder: number;
/**
* Current sortmeta objects to sort the data.
*/
multiSortMeta: DataTableSortMeta[];
/**
* Current filters object.
*/
filters: DataTableFilterMeta;
/**
* Current order of the columns.
*/
columnOrder: string[];
/**
* Current group sortmeta objects to sort the data.
*/
groupRowsSortMeta: DataTableSortMeta;
/**
* Current editing meta data.
*/
editingMeta: object;
/**
* Current number of rows to display in new page as a number.
*/
d_rows: number;
/**
* Current filters object.
*/
d_filters: object;
}
/**
* Defines current options in DataTable component.
*/
export interface DataTableContext {
/**
* Current scrollable state as a boolean.
* @defaultValue false
*/
scrollable: boolean;
}
/**
* Custom passthrough(pt) options.
* @see {@link DataTableProps.pt}
*/
export interface DataTablePassThroughOptions {
/**
* Uses to pass attributes to the root's DOM element.
*/
root?: DataTablePassThroughType<React.HTMLAttributes<HTMLDivElement>>;
/**
* Uses to pass attributes to the loading overlay's DOM element.
*/
loadingOverlay?: DataTablePassThroughType<React.HTMLAttributes<HTMLDivElement>>;
/**
* Uses to pass attributes to the loading icon's DOM element.
*/
loadingIcon?: DataTablePassThroughType<React.SVGProps<SVGSVGElement> | React.HTMLAttributes<HTMLSpanElement>>;
/**
* Uses to pass attributes to the header's DOM element.
*/
header?: DataTablePassThroughType<React.HTMLAttributes<HTMLDivElement>>;
/**
* Uses to pass attributes to the Paginator component.
* @see {@link PaginatorPassThroughOptions}
*/
paginator?: PaginatorPassThroughOptions;
/**
* Uses to pass attributes to the wrapper's DOM element.
*/
wrapper?: DataTablePassThroughType<React.HTMLAttributes<HTMLDivElement>>;
/**
* Uses to pass attributes to the VirtualScroller component.
* @see {@link VirtualScrollerPassThroughOptions}
*/
virtualScroller?: VirtualScrollerPassThroughOptions;
/**
* Uses to pass attributes to the table's DOM element.
*/
table?: DataTablePassThroughType<React.HTMLAttributes<HTMLTableElement>>;
/**
* Uses to pass attributes to the virtual scroller spacer's DOM element.
*/
virtualScrollerSpacer?: DataTablePassThroughType<React.HTMLAttributes<HTMLTableSectionElement>>;
/**
* Uses to pass attributes to the footer's DOM element.
*/
footer?: DataTablePassThroughType<React.HTMLAttributes<HTMLDivElement>>;
/**
* Uses to pass attributes to the thead's DOM element.
*/
thead?: DataTablePassThroughType<React.HTMLAttributes<HTMLTableSectionElement>>;
/**
* Uses to pass attributes to the header row's DOM element.
*/
headerRow?: DataTablePassThroughType<React.HTMLAttributes<HTMLTableRowElement>>;
/**
* Uses to pass attributes to the tbody's DOM element.
*/
tbody?: DataTablePassThroughType<React.HTMLAttributes<HTMLTableSectionElement>>;
/**
* Uses to pass attributes to the rowgroup header's DOM element.
*/
rowGroupHeader?: DataTablePassThroughType<React.HTMLAttributes<HTMLTableRowElement>>;
/**
* Uses to pass attributes to the rowgroup header name's DOM element.
*/
rowGroupHeaderName?: DataTablePassThroughType<React.HTMLAttributes<HTMLSpanElement>>;
/**
* Uses to pass attributes to the row's DOM element.
*/
bodyRow?: DataTablePassThroughType<React.HTMLAttributes<HTMLTableRowElement>>;
/**
* Uses to pass attributes to the row expansion's DOM element.
*/
rowExpansion?: DataTablePassThroughType<React.HTMLAttributes<HTMLTableRowElement>>;
/**
* Uses to pass attributes to the rowgroup footer's DOM element.
*/
rowgroupFooter?: DataTablePassThroughType<React.HTMLAttributes<HTMLTableRowElement>>;
/**
* Uses to pass attributes to the empty message's DOM element.
*/
emptyMessage?: DataTablePassThroughType<React.HTMLAttributes<HTMLTableRowElement>>;
/**
* Uses to pass attributes to the tfoot's DOM element.
*/
tfoot?: DataTablePassThroughType<React.HTMLAttributes<HTMLTableSectionElement>>;
/**
* Uses to pass attributes to the footerr ow's DOM element.
*/
footerRow?: DataTablePassThroughType<React.HTMLAttributes<HTMLTableRowElement>>;
/**
* Uses to pass attributes to the footer cell's DOM element.
*/
footerCell?: DataTablePassThroughType<React.HTMLAttributes<HTMLTableCellElement>>;
/**
* Uses to pass attributes to the resize helper's DOM element.
*/
resizeHelper?: DataTablePassThroughType<React.HTMLAttributes<HTMLDivElement>>;
/**
* Uses to pass attributes to the reorder indicator up's DOM element.
*/
reorderIndicatorUp?: DataTablePassThroughType<React.HTMLAttributes<HTMLSpanElement>>;
/**
* Uses to pass attributes to the reorder indicator up icon's DOM element.
*/
reorderIndicatorUpIcon?: DataTablePassThroughType<React.SVGProps<SVGSVGElement> | React.HTMLAttributes<HTMLSpanElement>>;
/**
* Uses to pass attributes to the reorder indicator down's DOM element.
*/
reorderIndicatorDown?: DataTablePassThroughType<React.HTMLAttributes<HTMLSpanElement>>;
/**
* Uses to pass attributes to the reorder indicator down icon's DOM element.
*/
reorderIndicatorDownIcon?: DataTablePassThroughType<React.SVGProps<SVGSVGElement> | React.HTMLAttributes<HTMLSpanElement>>;
/**
* Used to pass attributes to the ColumnGroup helper components.
*/
columnGroup?: ColumnGroupPassThroughOptions;
/**
* Used to pass attributes to the Row helper components.
*/
row?: RowPassThroughOptions;
/**
* Used to pass attributes to the Column helper components.
*/
column?: ColumnPassThroughOptions;
/**
* Uses to pass attributes tooltip's DOM element.
* @type {TooltipPassThroughOptions}
*/
tooltip?: TooltipPassThroughOptions;
/**
* Used to manage all lifecycle hooks
* @see {@link ComponentHooks}
*/
hooks?: ComponentHooks;
}
type SortOrder = 1 | 0 | -1 | null | undefined;