-
-
Notifications
You must be signed in to change notification settings - Fork 3.5k
Expand file tree
/
Copy pathconfig.json
More file actions
1317 lines (1317 loc) · 89.8 KB
/
Copy pathconfig.json
File metadata and controls
1317 lines (1317 loc) · 89.8 KB
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
{
"$schema": "https://raw.githubusercontent.com/TanStack/tanstack.com/main/tanstack-docs-config.schema.json",
"docSearch": {
"appId": "74SF5EKVW9",
"apiKey": "9fc015a3310be6669ed66c6c459f319f",
"indexName": "tanstack-table"
},
"sections": [
{
"label": "Getting Started",
"children": [
{ "label": "Introduction", "to": "introduction" },
{ "label": "Overview", "to": "overview" },
{ "label": "Installation", "to": "installation" },
{ "label": "Devtools", "to": "devtools" },
{ "label": "FAQ", "to": "faq" }
],
"frameworks": [
{
"label": "angular",
"children": [
{ "label": "Angular Table Adapter", "to": "framework/angular/angular-table" },
{ "label": "Migrating to V9", "to": "framework/angular/guide/migrating" },
{ "label": "Rendering components", "to": "framework/angular/guide/rendering" },
{ "label": "Table composition", "to": "framework/angular/guide/table-composition" }
]
},
{
"label": "lit",
"children": [
{ "label": "Lit Table Adapter", "to": "framework/lit/lit-table" }
]
},
{
"label": "react",
"children": [
{ "label": "React Table Adapter", "to": "framework/react/react-table" },
{ "label": "createTableHook Guide", "to": "framework/react/guide/create-table-hook" },
{ "label": "Migrating to V9", "to": "framework/react/guide/migrating" },
{ "label": "useLegacyTable Guide", "to": "framework/react/guide/use-legacy-table" }
]
},
{
"label": "preact",
"children": [
{ "label": "Preact Table Adapter", "to": "framework/preact/preact-table" },
{ "label": "createTableHook Guide", "to": "framework/preact/guide/create-table-hook" }
]
},
{
"label": "solid",
"children": [
{ "label": "Solid Table Adapter", "to": "framework/solid/solid-table" }
]
},
{
"label": "svelte",
"children": [
{ "label": "Svelte Table Adapter", "to": "framework/svelte/svelte-table" }
]
},
{
"label": "vue",
"children": [
{ "label": "Vue Table Adapter", "to": "framework/vue/vue-table" }
]
},
{
"label": "vanilla",
"children": [
{ "label": "Vanilla JS (No Framework)", "to": "vanilla" }
]
}
]
},
{
"label": "Core Guides",
"children": [
{ "label": "Data", "to": "guide/data" },
{ "label": "Column Defs", "to": "guide/column-defs" },
{ "label": "Table Instance", "to": "guide/tables" },
{ "label": "Row Models", "to": "guide/row-models" },
{ "label": "Rows", "to": "guide/rows" },
{ "label": "Cells", "to": "guide/cells" },
{ "label": "Header Groups", "to": "guide/header-groups" },
{ "label": "Headers", "to": "guide/headers" },
{ "label": "Columns", "to": "guide/columns" }
],
"frameworks": [
{
"label": "angular",
"children": [
{ "label": "Table State", "to": "framework/angular/guide/table-state" }
]
},
{
"label": "lit",
"children": [
{ "label": "Table State", "to": "framework/lit/guide/table-state" }
]
},
{
"label": "react",
"children": [
{ "label": "Table State", "to": "framework/react/guide/table-state" }
]
},
{
"label": "preact",
"children": [
{ "label": "Table State", "to": "framework/preact/guide/table-state" }
]
},
{
"label": "solid",
"children": [
{ "label": "Table State", "to": "framework/solid/guide/table-state" }
]
},
{
"label": "svelte",
"children": [
{ "label": "Table State", "to": "framework/svelte/guide/table-state" }
]
},
{
"label": "vue",
"children": [
{ "label": "Table State", "to": "framework/vue/guide/table-state" }
]
},
{
"label": "vanilla",
"children": [
{ "label": "Table State", "to": "framework/vanilla/guide/table-state" }
]
}
]
},
{
"label": "Feature Guides",
"children": [
{ "label": "Column Ordering", "to": "guide/column-ordering" },
{ "label": "Column Pinning", "to": "guide/column-pinning" },
{ "label": "Column Sizing", "to": "guide/column-sizing" },
{ "label": "Column Resizing", "to": "guide/column-resizing" },
{ "label": "Column Visibility", "to": "guide/column-visibility" },
{ "label": "Column Filtering", "to": "guide/column-filtering" },
{ "label": "Global Filtering", "to": "guide/global-filtering" },
{ "label": "Fuzzy Filtering", "to": "guide/fuzzy-filtering" },
{ "label": "Column Faceting", "to": "guide/column-faceting" },
{ "label": "Global Faceting", "to": "guide/global-faceting" },
{ "label": "Grouping", "to": "guide/grouping" },
{ "label": "Expanding", "to": "guide/expanding" },
{ "label": "Pagination", "to": "guide/pagination" },
{ "label": "Row Pinning", "to": "guide/row-pinning" },
{ "label": "Row Selection", "to": "guide/row-selection" },
{ "label": "Sorting", "to": "guide/sorting" },
{ "label": "Virtualization", "to": "guide/virtualization" },
{ "label": "Custom Features", "to": "guide/custom-features" }
]
},
{
"label": "API Reference",
"children": [
{ "label": "Core API Reference", "to": "reference/index" }
],
"frameworks": [
{
"label": "angular",
"children": [
{ "label": "Angular API Reference", "to": "framework/angular/reference/index" }
]
},
{
"label": "react",
"children": [
{ "label": "React API Reference", "to": "framework/react/reference/index" }
]
},
{
"label": "preact",
"children": [
{ "label": "Preact API Reference", "to": "framework/preact/reference/index" }
]
},
{
"label": "solid",
"children": [
{ "label": "Solid API Reference", "to": "framework/solid/reference/index" }
]
},
{
"label": "svelte",
"children": [
{ "label": "Svelte API Reference", "to": "framework/svelte/reference/index" }
]
},
{
"label": "vue",
"children": [
{ "label": "Vue API Reference", "to": "framework/vue/reference/index" }
]
},
{
"label": "lit",
"children": [
{ "label": "Lit API Reference", "to": "framework/lit/reference/index" }
]
}
]
},
{
"collapsible": true,
"defaultCollapsed": true,
"label": "Table API Reference",
"children": [
{ "label": "Table", "to": "reference/index/type-aliases/Table" },
{ "label": "TableOptions", "to": "reference/index/type-aliases/TableOptions" },
{ "label": "TableState", "to": "reference/index/type-aliases/TableState" },
{ "label": "TableMeta", "to": "reference/index/interfaces/TableMeta" },
{ "label": "TableFeature", "to": "reference/index/interfaces/TableFeature" },
{ "label": "TableFeatures", "to": "reference/index/interfaces/TableFeatures" },
{ "label": "StockFeatures", "to": "reference/index/interfaces/StockFeatures" },
{ "label": "CoreFeatures", "to": "reference/index/interfaces/CoreFeatures" },
{ "label": "BaseAtoms", "to": "reference/index/type-aliases/BaseAtoms" },
{ "label": "Atoms", "to": "reference/index/type-aliases/Atoms" },
{ "label": "ExternalAtoms", "to": "reference/index/type-aliases/ExternalAtoms" },
{ "label": "constructTable", "to": "reference/index/functions/constructTable" },
{ "label": "tableOptions", "to": "reference/index/functions/tableOptions" },
{ "label": "tableFeatures", "to": "reference/index/functions/tableFeatures" },
{ "label": "getInitialTableState", "to": "reference/index/functions/getInitialTableState" },
{ "label": "OnChangeFn", "to": "reference/index/type-aliases/OnChangeFn" },
{ "label": "Updater", "to": "reference/index/type-aliases/Updater" },
{ "label": "DebugOptions", "to": "reference/index/type-aliases/DebugOptions" }
],
"frameworks": [
{
"label": "react",
"children": [
{ "label": "useTable", "to": "framework/react/reference/index/functions/useTable" },
{ "label": "createTableHook", "to": "framework/react/reference/index/functions/createTableHook" },
{ "label": "ReactTable", "to": "framework/react/reference/index/type-aliases/ReactTable" },
{ "label": "AppReactTable", "to": "framework/react/reference/index/type-aliases/AppReactTable" },
{ "label": "CreateTableHookOptions", "to": "framework/react/reference/index/type-aliases/CreateTableHookOptions" },
{ "label": "Subscribe", "to": "framework/react/reference/index/functions/Subscribe" },
{ "label": "SubscribeProps", "to": "framework/react/reference/index/type-aliases/SubscribeProps" },
{ "label": "FlexRender", "to": "framework/react/reference/index/functions/FlexRender-1" },
{ "label": "flexRender", "to": "framework/react/reference/index/functions/flexRender" },
{ "label": "FlexRenderProps", "to": "framework/react/reference/index/type-aliases/FlexRenderProps" },
{ "label": "Renderable", "to": "framework/react/reference/index/type-aliases/Renderable" }
]
},
{
"label": "angular",
"children": [
{ "label": "injectTable", "to": "framework/angular/reference/functions/injectTable" },
{ "label": "createTableHook", "to": "framework/angular/reference/functions/createTableHook" },
{ "label": "AngularTable", "to": "framework/angular/reference/type-aliases/AngularTable" },
{ "label": "AppAngularTable", "to": "framework/angular/reference/type-aliases/AppAngularTable" },
{ "label": "CreateTableHookResult", "to": "framework/angular/reference/type-aliases/CreateTableHookResult" },
{ "label": "CreateTableContextOptions", "to": "framework/angular/reference/type-aliases/CreateTableContextOptions" },
{ "label": "flexRenderComponent", "to": "framework/angular/reference/functions/flexRenderComponent" },
{ "label": "FlexRenderComponent", "to": "framework/angular/reference/interfaces/FlexRenderComponent" },
{ "label": "FlexRenderContent", "to": "framework/angular/reference/type-aliases/FlexRenderContent" },
{ "label": "FlexRenderInputContent", "to": "framework/angular/reference/type-aliases/FlexRenderInputContent" },
{ "label": "FlexRenderComponentProps", "to": "framework/angular/reference/type-aliases/FlexRenderComponentProps" },
{ "label": "FlexRender", "to": "framework/angular/reference/variables/FlexRender" },
{ "label": "FlexRenderDirective", "to": "framework/angular/reference/classes/FlexRenderDirective" },
{ "label": "FlexRenderCell", "to": "framework/angular/reference/classes/FlexRenderCell" },
{ "label": "TanStackTable", "to": "framework/angular/reference/classes/TanStackTable" },
{ "label": "TanStackTableToken", "to": "framework/angular/reference/variables/TanStackTableToken" },
{ "label": "injectTableContext", "to": "framework/angular/reference/functions/injectTableContext" },
{ "label": "AngularTableComputed", "to": "framework/angular/reference/interfaces/AngularTableComputed" }
]
},
{
"label": "preact",
"children": [
{ "label": "useTable", "to": "framework/preact/reference/functions/useTable" },
{ "label": "createTableHook", "to": "framework/preact/reference/functions/createTableHook" },
{ "label": "PreactTable", "to": "framework/preact/reference/type-aliases/PreactTable" },
{ "label": "AppPreactTable", "to": "framework/preact/reference/type-aliases/AppPreactTable" },
{ "label": "CreateTableHookOptions", "to": "framework/preact/reference/type-aliases/CreateTableHookOptions" },
{ "label": "Subscribe", "to": "framework/preact/reference/functions/Subscribe" },
{ "label": "SubscribeProps", "to": "framework/preact/reference/type-aliases/SubscribeProps" },
{ "label": "FlexRender", "to": "framework/preact/reference/functions/FlexRender-1" },
{ "label": "flexRender", "to": "framework/preact/reference/functions/flexRender" }
]
},
{
"label": "solid",
"children": [
{ "label": "createTable", "to": "framework/solid/reference/functions/createTable" },
{ "label": "createTableHook", "to": "framework/solid/reference/functions/createTableHook" },
{ "label": "SolidTable", "to": "framework/solid/reference/type-aliases/SolidTable" },
{ "label": "AppSolidTable", "to": "framework/solid/reference/type-aliases/AppSolidTable" },
{ "label": "CreateTableHookOptions", "to": "framework/solid/reference/type-aliases/CreateTableHookOptions" },
{ "label": "FlexRender", "to": "framework/solid/reference/functions/FlexRender-1" },
{ "label": "flexRender", "to": "framework/solid/reference/functions/flexRender" }
]
},
{
"label": "svelte",
"children": [
{ "label": "createTable", "to": "framework/svelte/reference/functions/createTable" },
{ "label": "createTableHook", "to": "framework/svelte/reference/functions/createTableHook" },
{ "label": "createTableState", "to": "framework/svelte/reference/functions/createTableState" },
{ "label": "SvelteTable", "to": "framework/svelte/reference/type-aliases/SvelteTable" },
{ "label": "AppSvelteTable", "to": "framework/svelte/reference/type-aliases/AppSvelteTable" },
{ "label": "subscribeTable", "to": "framework/svelte/reference/functions/subscribeTable" },
{ "label": "renderComponent", "to": "framework/svelte/reference/functions/renderComponent" },
{ "label": "renderSnippet", "to": "framework/svelte/reference/functions/renderSnippet" },
{ "label": "FlexRender", "to": "framework/svelte/reference/variables/FlexRender" }
]
},
{
"label": "vue",
"children": [
{ "label": "useTable", "to": "framework/vue/reference/functions/useTable" },
{ "label": "createTableHook", "to": "framework/vue/reference/functions/createTableHook" },
{ "label": "VueTable", "to": "framework/vue/reference/type-aliases/VueTable" },
{ "label": "AppVueTable", "to": "framework/vue/reference/type-aliases/AppVueTable" },
{ "label": "CreateTableHookOptions", "to": "framework/vue/reference/type-aliases/CreateTableHookOptions" },
{ "label": "FlexRender", "to": "framework/vue/reference/variables/FlexRender" },
{ "label": "flexRender", "to": "framework/vue/reference/functions/flexRender" }
]
},
{
"label": "lit",
"children": [
{ "label": "TableController", "to": "framework/lit/reference/classes/TableController" },
{ "label": "createTableHook", "to": "framework/lit/reference/functions/createTableHook" },
{ "label": "LitTable", "to": "framework/lit/reference/type-aliases/LitTable" },
{ "label": "AppLitTable", "to": "framework/lit/reference/type-aliases/AppLitTable" },
{ "label": "CreateTableHookOptions", "to": "framework/lit/reference/type-aliases/CreateTableHookOptions" },
{ "label": "FlexRender", "to": "framework/lit/reference/functions/FlexRender-1" },
{ "label": "flexRender", "to": "framework/lit/reference/functions/flexRender" }
]
}
]
},
{
"collapsible": true,
"defaultCollapsed": true,
"label": "Column API Reference",
"children": [
{ "label": "Column", "to": "reference/index/type-aliases/Column" },
{ "label": "ColumnDef", "to": "reference/index/type-aliases/ColumnDef" },
{ "label": "ColumnDefBase", "to": "reference/index/type-aliases/ColumnDefBase" },
{ "label": "AccessorColumnDef", "to": "reference/index/type-aliases/AccessorColumnDef" },
{ "label": "DisplayColumnDef", "to": "reference/index/type-aliases/DisplayColumnDef" },
{ "label": "GroupColumnDef", "to": "reference/index/type-aliases/GroupColumnDef" },
{ "label": "ColumnDefTemplate", "to": "reference/index/type-aliases/ColumnDefTemplate" },
{ "label": "ColumnHelper", "to": "reference/index/type-aliases/ColumnHelper" },
{ "label": "ColumnMeta", "to": "reference/index/interfaces/ColumnMeta" },
{ "label": "createColumnHelper", "to": "reference/index/functions/createColumnHelper" },
{ "label": "constructColumn", "to": "reference/index/functions/constructColumn" },
{ "label": "AccessorFn", "to": "reference/index/type-aliases/AccessorFn" },
{ "label": "DeepKeys", "to": "reference/index/type-aliases/DeepKeys" },
{ "label": "DeepValue", "to": "reference/index/type-aliases/DeepValue" }
],
"frameworks": [
{
"label": "react",
"children": [
{ "label": "AppColumnHelper", "to": "framework/react/reference/index/type-aliases/AppColumnHelper" }
]
},
{
"label": "angular",
"children": [
{ "label": "AppColumnHelper", "to": "framework/angular/reference/type-aliases/AppColumnHelper" }
]
},
{
"label": "preact",
"children": [
{ "label": "AppColumnHelper", "to": "framework/preact/reference/type-aliases/AppColumnHelper" }
]
},
{
"label": "solid",
"children": [
{ "label": "AppColumnHelper", "to": "framework/solid/reference/type-aliases/AppColumnHelper" }
]
},
{
"label": "svelte",
"children": [
{ "label": "AppColumnHelper", "to": "framework/svelte/reference/type-aliases/AppColumnHelper" }
]
},
{
"label": "vue",
"children": [
{ "label": "AppColumnHelper", "to": "framework/vue/reference/type-aliases/AppColumnHelper" }
]
},
{
"label": "lit",
"children": [
{ "label": "AppColumnHelper", "to": "framework/lit/reference/type-aliases/AppColumnHelper" }
]
}
]
},
{
"collapsible": true,
"defaultCollapsed": true,
"label": "Row API Reference",
"children": [
{ "label": "Row", "to": "reference/index/type-aliases/Row" },
{ "label": "RowData", "to": "reference/index/type-aliases/RowData" },
{ "label": "RowModel", "to": "reference/index/interfaces/RowModel" },
{ "label": "constructRow", "to": "reference/index/functions/constructRow" },
{ "label": "createCoreRowModel", "to": "reference/index/functions/createCoreRowModel" },
{ "label": "createFilteredRowModel", "to": "reference/index/functions/createFilteredRowModel" },
{ "label": "createSortedRowModel", "to": "reference/index/functions/createSortedRowModel" },
{ "label": "createGroupedRowModel", "to": "reference/index/functions/createGroupedRowModel" },
{ "label": "createExpandedRowModel", "to": "reference/index/functions/createExpandedRowModel" },
{ "label": "createPaginatedRowModel", "to": "reference/index/functions/createPaginatedRowModel" },
{ "label": "createFacetedRowModel", "to": "reference/index/functions/createFacetedRowModel" },
{ "label": "createFacetedMinMaxValues", "to": "reference/index/functions/createFacetedMinMaxValues" },
{ "label": "createFacetedUniqueValues", "to": "reference/index/functions/createFacetedUniqueValues" },
{ "label": "expandRows", "to": "reference/index/functions/expandRows" },
{ "label": "RowModelFns", "to": "reference/index/type-aliases/RowModelFns" },
{ "label": "CreateRowModels", "to": "reference/index/type-aliases/CreateRowModels" },
{ "label": "CachedRowModels", "to": "reference/index/type-aliases/CachedRowModels" }
]
},
{
"collapsible": true,
"defaultCollapsed": true,
"label": "Cell API Reference",
"children": [
{ "label": "Cell", "to": "reference/index/type-aliases/Cell" },
{ "label": "CellContext", "to": "reference/index/interfaces/CellContext" },
{ "label": "CellData", "to": "reference/index/type-aliases/CellData" },
{ "label": "constructCell", "to": "reference/index/functions/constructCell" }
],
"frameworks": [
{
"label": "react",
"children": [
{ "label": "AppCellContext", "to": "framework/react/reference/index/type-aliases/AppCellContext" }
]
},
{
"label": "angular",
"children": [
{ "label": "AppCellContext", "to": "framework/angular/reference/type-aliases/AppCellContext" }
]
},
{
"label": "preact",
"children": [
{ "label": "AppCellContext", "to": "framework/preact/reference/type-aliases/AppCellContext" }
]
},
{
"label": "solid",
"children": [
{ "label": "AppCellContext", "to": "framework/solid/reference/type-aliases/AppCellContext" }
]
},
{
"label": "svelte",
"children": [
{ "label": "AppCellContext", "to": "framework/svelte/reference/type-aliases/AppCellContext" }
]
},
{
"label": "vue",
"children": [
{ "label": "AppCellContext", "to": "framework/vue/reference/type-aliases/AppCellContext" }
]
},
{
"label": "lit",
"children": [
{ "label": "AppCellContext", "to": "framework/lit/reference/type-aliases/AppCellContext" }
]
}
]
},
{
"collapsible": true,
"defaultCollapsed": true,
"label": "Header API Reference",
"children": [
{ "label": "Header", "to": "reference/index/type-aliases/Header" },
{ "label": "HeaderGroup", "to": "reference/index/type-aliases/HeaderGroup" },
{ "label": "HeaderContext", "to": "reference/index/interfaces/HeaderContext" },
{ "label": "constructHeader", "to": "reference/index/functions/constructHeader" },
{ "label": "buildHeaderGroups", "to": "reference/index/functions/buildHeaderGroups" }
],
"frameworks": [
{
"label": "react",
"children": [
{ "label": "AppHeaderContext", "to": "framework/react/reference/index/type-aliases/AppHeaderContext" }
]
},
{
"label": "angular",
"children": [
{ "label": "AppHeaderContext", "to": "framework/angular/reference/type-aliases/AppHeaderContext" }
]
},
{
"label": "preact",
"children": [
{ "label": "AppHeaderContext", "to": "framework/preact/reference/type-aliases/AppHeaderContext" }
]
},
{
"label": "solid",
"children": [
{ "label": "AppHeaderContext", "to": "framework/solid/reference/type-aliases/AppHeaderContext" }
]
},
{
"label": "svelte",
"children": [
{ "label": "AppHeaderContext", "to": "framework/svelte/reference/type-aliases/AppHeaderContext" }
]
},
{
"label": "vue",
"children": [
{ "label": "AppHeaderContext", "to": "framework/vue/reference/type-aliases/AppHeaderContext" }
]
},
{
"label": "lit",
"children": [
{ "label": "AppHeaderContext", "to": "framework/lit/reference/type-aliases/AppHeaderContext" }
]
}
]
},
{
"collapsible": true,
"defaultCollapsed": true,
"label": "Features API Reference",
"children": [
{ "label": "stockFeatures", "to": "reference/index/variables/stockFeatures" },
{ "label": "coreFeatures", "to": "reference/index/variables/coreFeatures" },
{ "label": "coreCellsFeature", "to": "reference/index/variables/coreCellsFeature" },
{ "label": "coreColumnsFeature", "to": "reference/index/variables/coreColumnsFeature" },
{ "label": "coreHeadersFeature", "to": "reference/index/variables/coreHeadersFeature" },
{ "label": "coreRowModelsFeature", "to": "reference/index/variables/coreRowModelsFeature" },
{ "label": "coreRowsFeature", "to": "reference/index/variables/coreRowsFeature" },
{ "label": "coreTablesFeature", "to": "reference/index/variables/coreTablesFeature" },
{ "label": "columnFilteringFeature", "to": "reference/index/variables/columnFilteringFeature" },
{ "label": "columnFacetingFeature", "to": "reference/index/variables/columnFacetingFeature" },
{ "label": "columnGroupingFeature", "to": "reference/index/variables/columnGroupingFeature" },
{ "label": "columnOrderingFeature", "to": "reference/index/variables/columnOrderingFeature" },
{ "label": "columnPinningFeature", "to": "reference/index/variables/columnPinningFeature" },
{ "label": "columnResizingFeature", "to": "reference/index/variables/columnResizingFeature" },
{ "label": "columnSizingFeature", "to": "reference/index/variables/columnSizingFeature" },
{ "label": "columnVisibilityFeature", "to": "reference/index/variables/columnVisibilityFeature" },
{ "label": "globalFilteringFeature", "to": "reference/index/variables/globalFilteringFeature" },
{ "label": "rowExpandingFeature", "to": "reference/index/variables/rowExpandingFeature" },
{ "label": "rowPaginationFeature", "to": "reference/index/variables/rowPaginationFeature" },
{ "label": "rowPinningFeature", "to": "reference/index/variables/rowPinningFeature" },
{ "label": "rowSelectionFeature", "to": "reference/index/variables/rowSelectionFeature" },
{ "label": "rowSortingFeature", "to": "reference/index/variables/rowSortingFeature" },
{ "label": "filterFns", "to": "reference/index/variables/filterFns" },
{ "label": "sortFns", "to": "reference/index/variables/sortFns" },
{ "label": "aggregationFns", "to": "reference/index/variables/aggregationFns" },
{ "label": "constructColumnFilteringFeature", "to": "reference/index/functions/constructColumnFilteringFeature" },
{ "label": "constructColumnFacetingFeature", "to": "reference/index/functions/constructColumnFacetingFeature" },
{ "label": "constructColumnGroupingFeature", "to": "reference/index/functions/constructColumnGroupingFeature" },
{ "label": "constructColumnOrderingFeature", "to": "reference/index/functions/constructColumnOrderingFeature" },
{ "label": "constructColumnPinningFeature", "to": "reference/index/functions/constructColumnPinningFeature" },
{ "label": "constructColumnResizingFeature", "to": "reference/index/functions/constructColumnResizingFeature" },
{ "label": "constructColumnSizingFeature", "to": "reference/index/functions/constructColumnSizingFeature" },
{ "label": "constructColumnVisibilityFeature", "to": "reference/index/functions/constructColumnVisibilityFeature" },
{ "label": "constructGlobalFilteringFeature", "to": "reference/index/functions/constructGlobalFilteringFeature" },
{ "label": "constructRowExpandingFeature", "to": "reference/index/functions/constructRowExpandingFeature" },
{ "label": "constructRowPaginationFeature", "to": "reference/index/functions/constructRowPaginationFeature" },
{ "label": "constructRowPinningFeature", "to": "reference/index/functions/constructRowPinningFeature" },
{ "label": "constructRowSelectionFeature", "to": "reference/index/functions/constructRowSelectionFeature" },
{ "label": "constructRowSortingFeature", "to": "reference/index/functions/constructRowSortingFeature" },
{ "label": "ColumnFilter", "to": "reference/index/interfaces/ColumnFilter" },
{ "label": "ColumnPinningState", "to": "reference/index/interfaces/ColumnPinningState" },
{ "label": "ColumnSort", "to": "reference/index/interfaces/ColumnSort" },
{ "label": "PaginationState", "to": "reference/index/interfaces/PaginationState" },
{ "label": "RowPinningState", "to": "reference/index/interfaces/RowPinningState" },
{ "label": "columnResizingState", "to": "reference/index/interfaces/columnResizingState" },
{ "label": "FilterFn", "to": "reference/index/interfaces/FilterFn" },
{ "label": "FilterFns", "to": "reference/index/interfaces/FilterFns" },
{ "label": "FilterMeta", "to": "reference/index/interfaces/FilterMeta" },
{ "label": "SortFn", "to": "reference/index/interfaces/SortFn" },
{ "label": "SortFns", "to": "reference/index/interfaces/SortFns" },
{ "label": "AggregationFns", "to": "reference/index/interfaces/AggregationFns" },
{ "label": "ColumnFiltersState", "to": "reference/index/type-aliases/ColumnFiltersState" },
{ "label": "ColumnOrderState", "to": "reference/index/type-aliases/ColumnOrderState" },
{ "label": "ColumnPinningPosition", "to": "reference/index/type-aliases/ColumnPinningPosition" },
{ "label": "ColumnResizeDirection", "to": "reference/index/type-aliases/ColumnResizeDirection" },
{ "label": "ColumnResizeMode", "to": "reference/index/type-aliases/ColumnResizeMode" },
{ "label": "ColumnSizingState", "to": "reference/index/type-aliases/ColumnSizingState" },
{ "label": "ColumnVisibilityState", "to": "reference/index/type-aliases/ColumnVisibilityState" },
{ "label": "ExpandedState", "to": "reference/index/type-aliases/ExpandedState" },
{ "label": "GroupingState", "to": "reference/index/type-aliases/GroupingState" },
{ "label": "RowPinningPosition", "to": "reference/index/type-aliases/RowPinningPosition" },
{ "label": "RowSelectionState", "to": "reference/index/type-aliases/RowSelectionState" },
{ "label": "SortDirection", "to": "reference/index/type-aliases/SortDirection" },
{ "label": "SortingState", "to": "reference/index/type-aliases/SortingState" },
{ "label": "AggregationFn", "to": "reference/index/type-aliases/AggregationFn" },
{ "label": "AggregationFnOption", "to": "reference/index/type-aliases/AggregationFnOption" },
{ "label": "FilterFnOption", "to": "reference/index/type-aliases/FilterFnOption" },
{ "label": "SortFnOption", "to": "reference/index/type-aliases/SortFnOption" },
{ "label": "BuiltInAggregationFn", "to": "reference/index/type-aliases/BuiltInAggregationFn" },
{ "label": "BuiltInFilterFn", "to": "reference/index/type-aliases/BuiltInFilterFn" },
{ "label": "BuiltInSortFn", "to": "reference/index/type-aliases/BuiltInSortFn" },
{ "label": "filterFn_arrHas", "to": "reference/index/variables/filterFn_arrHas" },
{ "label": "filterFn_arrIncludes", "to": "reference/index/variables/filterFn_arrIncludes" },
{ "label": "filterFn_arrIncludesAll", "to": "reference/index/variables/filterFn_arrIncludesAll" },
{ "label": "filterFn_arrIncludesSome", "to": "reference/index/variables/filterFn_arrIncludesSome" },
{ "label": "filterFn_equals", "to": "reference/index/variables/filterFn_equals" },
{ "label": "filterFn_equalsString", "to": "reference/index/variables/filterFn_equalsString" },
{ "label": "filterFn_equalsStringSensitive", "to": "reference/index/variables/filterFn_equalsStringSensitive" },
{ "label": "filterFn_greaterThan", "to": "reference/index/variables/filterFn_greaterThan" },
{ "label": "filterFn_greaterThanOrEqualTo", "to": "reference/index/variables/filterFn_greaterThanOrEqualTo" },
{ "label": "filterFn_inNumberRange", "to": "reference/index/variables/filterFn_inNumberRange" },
{ "label": "filterFn_includesString", "to": "reference/index/variables/filterFn_includesString" },
{ "label": "filterFn_includesStringSensitive", "to": "reference/index/variables/filterFn_includesStringSensitive" },
{ "label": "filterFn_lessThan", "to": "reference/index/variables/filterFn_lessThan" },
{ "label": "filterFn_lessThanOrEqualTo", "to": "reference/index/variables/filterFn_lessThanOrEqualTo" },
{ "label": "filterFn_weakEquals", "to": "reference/index/variables/filterFn_weakEquals" },
{ "label": "sortFn_alphanumeric", "to": "reference/index/variables/sortFn_alphanumeric" },
{ "label": "sortFn_alphanumericCaseSensitive", "to": "reference/index/variables/sortFn_alphanumericCaseSensitive" },
{ "label": "sortFn_basic", "to": "reference/index/variables/sortFn_basic" },
{ "label": "sortFn_datetime", "to": "reference/index/variables/sortFn_datetime" },
{ "label": "sortFn_text", "to": "reference/index/variables/sortFn_text" },
{ "label": "sortFn_textCaseSensitive", "to": "reference/index/variables/sortFn_textCaseSensitive" },
{ "label": "aggregationFn_count", "to": "reference/index/variables/aggregationFn_count" },
{ "label": "aggregationFn_extent", "to": "reference/index/variables/aggregationFn_extent" },
{ "label": "aggregationFn_max", "to": "reference/index/variables/aggregationFn_max" },
{ "label": "aggregationFn_mean", "to": "reference/index/variables/aggregationFn_mean" },
{ "label": "aggregationFn_median", "to": "reference/index/variables/aggregationFn_median" },
{ "label": "aggregationFn_min", "to": "reference/index/variables/aggregationFn_min" },
{ "label": "aggregationFn_sum", "to": "reference/index/variables/aggregationFn_sum" },
{ "label": "aggregationFn_unique", "to": "reference/index/variables/aggregationFn_unique" },
{ "label": "aggregationFn_uniqueCount", "to": "reference/index/variables/aggregationFn_uniqueCount" }
]
},
{
"collapsible": true,
"defaultCollapsed": true,
"label": "Static Functions API Reference",
"children": [
{ "label": "cell_getContext", "to": "reference/static-functions/functions/cell_getContext" },
{ "label": "cell_getIsAggregated", "to": "reference/static-functions/functions/cell_getIsAggregated" },
{ "label": "cell_getIsGrouped", "to": "reference/static-functions/functions/cell_getIsGrouped" },
{ "label": "cell_getIsPlaceholder", "to": "reference/static-functions/functions/cell_getIsPlaceholder" },
{ "label": "cell_getValue", "to": "reference/static-functions/functions/cell_getValue" },
{ "label": "cell_renderValue", "to": "reference/static-functions/functions/cell_renderValue" },
{ "label": "column_clearSorting", "to": "reference/static-functions/functions/column_clearSorting" },
{ "label": "column_getAfter", "to": "reference/static-functions/functions/column_getAfter" },
{ "label": "column_getAggregationFn", "to": "reference/static-functions/functions/column_getAggregationFn" },
{ "label": "column_getAutoAggregationFn", "to": "reference/static-functions/functions/column_getAutoAggregationFn" },
{ "label": "column_getAutoFilterFn", "to": "reference/static-functions/functions/column_getAutoFilterFn" },
{ "label": "column_getAutoSortDir", "to": "reference/static-functions/functions/column_getAutoSortDir" },
{ "label": "column_getAutoSortFn", "to": "reference/static-functions/functions/column_getAutoSortFn" },
{ "label": "column_getCanFilter", "to": "reference/static-functions/functions/column_getCanFilter" },
{ "label": "column_getCanGlobalFilter", "to": "reference/static-functions/functions/column_getCanGlobalFilter" },
{ "label": "column_getCanGroup", "to": "reference/static-functions/functions/column_getCanGroup" },
{ "label": "column_getCanHide", "to": "reference/static-functions/functions/column_getCanHide" },
{ "label": "column_getCanMultiSort", "to": "reference/static-functions/functions/column_getCanMultiSort" },
{ "label": "column_getCanPin", "to": "reference/static-functions/functions/column_getCanPin" },
{ "label": "column_getCanResize", "to": "reference/static-functions/functions/column_getCanResize" },
{ "label": "column_getCanSort", "to": "reference/static-functions/functions/column_getCanSort" },
{ "label": "column_getFacetedMinMaxValues", "to": "reference/static-functions/functions/column_getFacetedMinMaxValues" },
{ "label": "column_getFacetedRowModel", "to": "reference/static-functions/functions/column_getFacetedRowModel" },
{ "label": "column_getFacetedUniqueValues", "to": "reference/static-functions/functions/column_getFacetedUniqueValues" },
{ "label": "column_getFilterFn", "to": "reference/static-functions/functions/column_getFilterFn" },
{ "label": "column_getFilterIndex", "to": "reference/static-functions/functions/column_getFilterIndex" },
{ "label": "column_getFilterValue", "to": "reference/static-functions/functions/column_getFilterValue" },
{ "label": "column_getFirstSortDir", "to": "reference/static-functions/functions/column_getFirstSortDir" },
{ "label": "column_getFlatColumns", "to": "reference/static-functions/functions/column_getFlatColumns" },
{ "label": "column_getGroupedIndex", "to": "reference/static-functions/functions/column_getGroupedIndex" },
{ "label": "column_getIndex", "to": "reference/static-functions/functions/column_getIndex" },
{ "label": "column_getIsFiltered", "to": "reference/static-functions/functions/column_getIsFiltered" },
{ "label": "column_getIsFirstColumn", "to": "reference/static-functions/functions/column_getIsFirstColumn" },
{ "label": "column_getIsGrouped", "to": "reference/static-functions/functions/column_getIsGrouped" },
{ "label": "column_getIsLastColumn", "to": "reference/static-functions/functions/column_getIsLastColumn" },
{ "label": "column_getIsPinned", "to": "reference/static-functions/functions/column_getIsPinned" },
{ "label": "column_getIsResizing", "to": "reference/static-functions/functions/column_getIsResizing" },
{ "label": "column_getIsSorted", "to": "reference/static-functions/functions/column_getIsSorted" },
{ "label": "column_getIsVisible", "to": "reference/static-functions/functions/column_getIsVisible" },
{ "label": "column_getLeafColumns", "to": "reference/static-functions/functions/column_getLeafColumns" },
{ "label": "column_getNextSortingOrder", "to": "reference/static-functions/functions/column_getNextSortingOrder" },
{ "label": "column_getPinnedIndex", "to": "reference/static-functions/functions/column_getPinnedIndex" },
{ "label": "column_getSize", "to": "reference/static-functions/functions/column_getSize" },
{ "label": "column_getSortFn", "to": "reference/static-functions/functions/column_getSortFn" },
{ "label": "column_getSortIndex", "to": "reference/static-functions/functions/column_getSortIndex" },
{ "label": "column_getStart", "to": "reference/static-functions/functions/column_getStart" },
{ "label": "column_getToggleGroupingHandler", "to": "reference/static-functions/functions/column_getToggleGroupingHandler" },
{ "label": "column_getToggleSortingHandler", "to": "reference/static-functions/functions/column_getToggleSortingHandler" },
{ "label": "column_getToggleVisibilityHandler", "to": "reference/static-functions/functions/column_getToggleVisibilityHandler" },
{ "label": "column_pin", "to": "reference/static-functions/functions/column_pin" },
{ "label": "column_resetSize", "to": "reference/static-functions/functions/column_resetSize" },
{ "label": "column_setFilterValue", "to": "reference/static-functions/functions/column_setFilterValue" },
{ "label": "column_toggleGrouping", "to": "reference/static-functions/functions/column_toggleGrouping" },
{ "label": "column_toggleSorting", "to": "reference/static-functions/functions/column_toggleSorting" },
{ "label": "column_toggleVisibility", "to": "reference/static-functions/functions/column_toggleVisibility" },
{ "label": "getDefaultColumnFiltersState", "to": "reference/static-functions/functions/getDefaultColumnFiltersState" },
{ "label": "getDefaultColumnOrderState", "to": "reference/static-functions/functions/getDefaultColumnOrderState" },
{ "label": "getDefaultColumnPinningState", "to": "reference/static-functions/functions/getDefaultColumnPinningState" },
{ "label": "getDefaultColumnResizingState", "to": "reference/static-functions/functions/getDefaultColumnResizingState" },
{ "label": "getDefaultColumnSizingColumnDef", "to": "reference/static-functions/functions/getDefaultColumnSizingColumnDef" },
{ "label": "getDefaultColumnSizingState", "to": "reference/static-functions/functions/getDefaultColumnSizingState" },
{ "label": "getDefaultColumnVisibilityState", "to": "reference/static-functions/functions/getDefaultColumnVisibilityState" },
{ "label": "getDefaultExpandedState", "to": "reference/static-functions/functions/getDefaultExpandedState" },
{ "label": "getDefaultGroupingState", "to": "reference/static-functions/functions/getDefaultGroupingState" },
{ "label": "getDefaultPaginationState", "to": "reference/static-functions/functions/getDefaultPaginationState" },
{ "label": "getDefaultRowPinningState", "to": "reference/static-functions/functions/getDefaultRowPinningState" },
{ "label": "getDefaultRowSelectionState", "to": "reference/static-functions/functions/getDefaultRowSelectionState" },
{ "label": "getDefaultSortingState", "to": "reference/static-functions/functions/getDefaultSortingState" },
{ "label": "header_getContext", "to": "reference/static-functions/functions/header_getContext" },
{ "label": "header_getLeafHeaders", "to": "reference/static-functions/functions/header_getLeafHeaders" },
{ "label": "header_getResizeHandler", "to": "reference/static-functions/functions/header_getResizeHandler" },
{ "label": "header_getSize", "to": "reference/static-functions/functions/header_getSize" },
{ "label": "header_getStart", "to": "reference/static-functions/functions/header_getStart" },
{ "label": "isRowSelected", "to": "reference/static-functions/functions/isRowSelected" },
{ "label": "isSubRowSelected", "to": "reference/static-functions/functions/isSubRowSelected" },
{ "label": "isTouchStartEvent", "to": "reference/static-functions/functions/isTouchStartEvent" },
{ "label": "orderColumns", "to": "reference/static-functions/functions/orderColumns" },
{ "label": "passiveEventSupported", "to": "reference/static-functions/functions/passiveEventSupported" },
{ "label": "row_getAllCells", "to": "reference/static-functions/functions/row_getAllCells" },
{ "label": "row_getAllCellsByColumnId", "to": "reference/static-functions/functions/row_getAllCellsByColumnId" },
{ "label": "row_getCanExpand", "to": "reference/static-functions/functions/row_getCanExpand" },
{ "label": "row_getCanMultiSelect", "to": "reference/static-functions/functions/row_getCanMultiSelect" },
{ "label": "row_getCanPin", "to": "reference/static-functions/functions/row_getCanPin" },
{ "label": "row_getCanSelect", "to": "reference/static-functions/functions/row_getCanSelect" },
{ "label": "row_getCanSelectSubRows", "to": "reference/static-functions/functions/row_getCanSelectSubRows" },
{ "label": "row_getCenterVisibleCells", "to": "reference/static-functions/functions/row_getCenterVisibleCells" },
{ "label": "row_getGroupingValue", "to": "reference/static-functions/functions/row_getGroupingValue" },
{ "label": "row_getIsAllParentsExpanded", "to": "reference/static-functions/functions/row_getIsAllParentsExpanded" },
{ "label": "row_getIsAllSubRowsSelected", "to": "reference/static-functions/functions/row_getIsAllSubRowsSelected" },
{ "label": "row_getIsExpanded", "to": "reference/static-functions/functions/row_getIsExpanded" },
{ "label": "row_getIsGrouped", "to": "reference/static-functions/functions/row_getIsGrouped" },
{ "label": "row_getIsPinned", "to": "reference/static-functions/functions/row_getIsPinned" },
{ "label": "row_getIsSelected", "to": "reference/static-functions/functions/row_getIsSelected" },
{ "label": "row_getIsSomeSelected", "to": "reference/static-functions/functions/row_getIsSomeSelected" },
{ "label": "row_getLeafRows", "to": "reference/static-functions/functions/row_getLeafRows" },
{ "label": "row_getLeftVisibleCells", "to": "reference/static-functions/functions/row_getLeftVisibleCells" },
{ "label": "row_getParentRow", "to": "reference/static-functions/functions/row_getParentRow" },
{ "label": "row_getParentRows", "to": "reference/static-functions/functions/row_getParentRows" },
{ "label": "row_getPinnedIndex", "to": "reference/static-functions/functions/row_getPinnedIndex" },
{ "label": "row_getRightVisibleCells", "to": "reference/static-functions/functions/row_getRightVisibleCells" },
{ "label": "row_getToggleExpandedHandler", "to": "reference/static-functions/functions/row_getToggleExpandedHandler" },
{ "label": "row_getToggleSelectedHandler", "to": "reference/static-functions/functions/row_getToggleSelectedHandler" },
{ "label": "row_getUniqueValues", "to": "reference/static-functions/functions/row_getUniqueValues" },
{ "label": "row_getValue", "to": "reference/static-functions/functions/row_getValue" },
{ "label": "row_getVisibleCells", "to": "reference/static-functions/functions/row_getVisibleCells" },
{ "label": "row_pin", "to": "reference/static-functions/functions/row_pin" },
{ "label": "row_renderValue", "to": "reference/static-functions/functions/row_renderValue" },
{ "label": "row_toggleExpanded", "to": "reference/static-functions/functions/row_toggleExpanded" },
{ "label": "row_toggleSelected", "to": "reference/static-functions/functions/row_toggleSelected" },
{ "label": "selectRowsFn", "to": "reference/static-functions/functions/selectRowsFn" },
{ "label": "shouldAutoRemoveFilter", "to": "reference/static-functions/functions/shouldAutoRemoveFilter" },
{ "label": "table_autoResetExpanded", "to": "reference/static-functions/functions/table_autoResetExpanded" },
{ "label": "table_autoResetPageIndex", "to": "reference/static-functions/functions/table_autoResetPageIndex" },
{ "label": "table_firstPage", "to": "reference/static-functions/functions/table_firstPage" },
{ "label": "table_getAllColumns", "to": "reference/static-functions/functions/table_getAllColumns" },
{ "label": "table_getAllFlatColumns", "to": "reference/static-functions/functions/table_getAllFlatColumns" },
{ "label": "table_getAllFlatColumnsById", "to": "reference/static-functions/functions/table_getAllFlatColumnsById" },
{ "label": "table_getAllLeafColumns", "to": "reference/static-functions/functions/table_getAllLeafColumns" },
{ "label": "table_getBottomRows", "to": "reference/static-functions/functions/table_getBottomRows" },
{ "label": "table_getCanNextPage", "to": "reference/static-functions/functions/table_getCanNextPage" },
{ "label": "table_getCanPreviousPage", "to": "reference/static-functions/functions/table_getCanPreviousPage" },
{ "label": "table_getCanSomeRowsExpand", "to": "reference/static-functions/functions/table_getCanSomeRowsExpand" },
{ "label": "table_getCenterFlatHeaders", "to": "reference/static-functions/functions/table_getCenterFlatHeaders" },
{ "label": "table_getCenterFooterGroups", "to": "reference/static-functions/functions/table_getCenterFooterGroups" },
{ "label": "table_getCenterHeaderGroups", "to": "reference/static-functions/functions/table_getCenterHeaderGroups" },
{ "label": "table_getCenterLeafColumns", "to": "reference/static-functions/functions/table_getCenterLeafColumns" },
{ "label": "table_getCenterLeafHeaders", "to": "reference/static-functions/functions/table_getCenterLeafHeaders" },
{ "label": "table_getCenterRows", "to": "reference/static-functions/functions/table_getCenterRows" },
{ "label": "table_getCenterTotalSize", "to": "reference/static-functions/functions/table_getCenterTotalSize" },
{ "label": "table_getCenterVisibleLeafColumns", "to": "reference/static-functions/functions/table_getCenterVisibleLeafColumns" },
{ "label": "table_getColumn", "to": "reference/static-functions/functions/table_getColumn" },
{ "label": "table_getCoreRowModel", "to": "reference/static-functions/functions/table_getCoreRowModel" },
{ "label": "table_getDefaultColumnDef", "to": "reference/static-functions/functions/table_getDefaultColumnDef" },
{ "label": "table_getExpandedDepth", "to": "reference/static-functions/functions/table_getExpandedDepth" },
{ "label": "table_getExpandedRowModel", "to": "reference/static-functions/functions/table_getExpandedRowModel" },
{ "label": "table_getFilteredRowModel", "to": "reference/static-functions/functions/table_getFilteredRowModel" },
{ "label": "table_getFilteredSelectedRowModel", "to": "reference/static-functions/functions/table_getFilteredSelectedRowModel" },
{ "label": "table_getFlatHeaders", "to": "reference/static-functions/functions/table_getFlatHeaders" },
{ "label": "table_getFooterGroups", "to": "reference/static-functions/functions/table_getFooterGroups" },
{ "label": "table_getGlobalAutoFilterFn", "to": "reference/static-functions/functions/table_getGlobalAutoFilterFn" },
{ "label": "table_getGlobalFacetedMinMaxValues", "to": "reference/static-functions/functions/table_getGlobalFacetedMinMaxValues" },
{ "label": "table_getGlobalFacetedRowModel", "to": "reference/static-functions/functions/table_getGlobalFacetedRowModel" },
{ "label": "table_getGlobalFacetedUniqueValues", "to": "reference/static-functions/functions/table_getGlobalFacetedUniqueValues" },
{ "label": "table_getGlobalFilterFn", "to": "reference/static-functions/functions/table_getGlobalFilterFn" },
{ "label": "table_getGroupedRowModel", "to": "reference/static-functions/functions/table_getGroupedRowModel" },
{ "label": "table_getGroupedSelectedRowModel", "to": "reference/static-functions/functions/table_getGroupedSelectedRowModel" },
{ "label": "table_getHeaderGroups", "to": "reference/static-functions/functions/table_getHeaderGroups" },
{ "label": "table_getIsAllColumnsVisible", "to": "reference/static-functions/functions/table_getIsAllColumnsVisible" },
{ "label": "table_getIsAllPageRowsSelected", "to": "reference/static-functions/functions/table_getIsAllPageRowsSelected" },
{ "label": "table_getIsAllRowsExpanded", "to": "reference/static-functions/functions/table_getIsAllRowsExpanded" },
{ "label": "table_getIsAllRowsSelected", "to": "reference/static-functions/functions/table_getIsAllRowsSelected" },
{ "label": "table_getIsSomeColumnsPinned", "to": "reference/static-functions/functions/table_getIsSomeColumnsPinned" },
{ "label": "table_getIsSomeColumnsVisible", "to": "reference/static-functions/functions/table_getIsSomeColumnsVisible" },
{ "label": "table_getIsSomePageRowsSelected", "to": "reference/static-functions/functions/table_getIsSomePageRowsSelected" },
{ "label": "table_getIsSomeRowsExpanded", "to": "reference/static-functions/functions/table_getIsSomeRowsExpanded" },
{ "label": "table_getIsSomeRowsPinned", "to": "reference/static-functions/functions/table_getIsSomeRowsPinned" },
{ "label": "table_getIsSomeRowsSelected", "to": "reference/static-functions/functions/table_getIsSomeRowsSelected" },
{ "label": "table_getLeafHeaders", "to": "reference/static-functions/functions/table_getLeafHeaders" },
{ "label": "table_getLeftFlatHeaders", "to": "reference/static-functions/functions/table_getLeftFlatHeaders" },
{ "label": "table_getLeftFooterGroups", "to": "reference/static-functions/functions/table_getLeftFooterGroups" },
{ "label": "table_getLeftHeaderGroups", "to": "reference/static-functions/functions/table_getLeftHeaderGroups" },
{ "label": "table_getLeftLeafColumns", "to": "reference/static-functions/functions/table_getLeftLeafColumns" },
{ "label": "table_getLeftLeafHeaders", "to": "reference/static-functions/functions/table_getLeftLeafHeaders" },
{ "label": "table_getLeftTotalSize", "to": "reference/static-functions/functions/table_getLeftTotalSize" },
{ "label": "table_getLeftVisibleLeafColumns", "to": "reference/static-functions/functions/table_getLeftVisibleLeafColumns" },
{ "label": "table_getOrderColumnsFn", "to": "reference/static-functions/functions/table_getOrderColumnsFn" },
{ "label": "table_getPageCount", "to": "reference/static-functions/functions/table_getPageCount" },
{ "label": "table_getPageOptions", "to": "reference/static-functions/functions/table_getPageOptions" },
{ "label": "table_getPaginatedRowModel", "to": "reference/static-functions/functions/table_getPaginatedRowModel" },
{ "label": "table_getPinnedLeafColumns", "to": "reference/static-functions/functions/table_getPinnedLeafColumns" },
{ "label": "table_getPinnedVisibleLeafColumns", "to": "reference/static-functions/functions/table_getPinnedVisibleLeafColumns" },
{ "label": "table_getPreExpandedRowModel", "to": "reference/static-functions/functions/table_getPreExpandedRowModel" },
{ "label": "table_getPreFilteredRowModel", "to": "reference/static-functions/functions/table_getPreFilteredRowModel" },
{ "label": "table_getPreGroupedRowModel", "to": "reference/static-functions/functions/table_getPreGroupedRowModel" },
{ "label": "table_getPrePaginatedRowModel", "to": "reference/static-functions/functions/table_getPrePaginatedRowModel" },
{ "label": "table_getPreSelectedRowModel", "to": "reference/static-functions/functions/table_getPreSelectedRowModel" },
{ "label": "table_getPreSortedRowModel", "to": "reference/static-functions/functions/table_getPreSortedRowModel" },
{ "label": "table_getRightFlatHeaders", "to": "reference/static-functions/functions/table_getRightFlatHeaders" },
{ "label": "table_getRightFooterGroups", "to": "reference/static-functions/functions/table_getRightFooterGroups" },
{ "label": "table_getRightHeaderGroups", "to": "reference/static-functions/functions/table_getRightHeaderGroups" },
{ "label": "table_getRightLeafColumns", "to": "reference/static-functions/functions/table_getRightLeafColumns" },
{ "label": "table_getRightLeafHeaders", "to": "reference/static-functions/functions/table_getRightLeafHeaders" },
{ "label": "table_getRightTotalSize", "to": "reference/static-functions/functions/table_getRightTotalSize" },
{ "label": "table_getRightVisibleLeafColumns", "to": "reference/static-functions/functions/table_getRightVisibleLeafColumns" },
{ "label": "table_getRow", "to": "reference/static-functions/functions/table_getRow" },
{ "label": "table_getRowCount", "to": "reference/static-functions/functions/table_getRowCount" },
{ "label": "table_getRowId", "to": "reference/static-functions/functions/table_getRowId" },
{ "label": "table_getRowModel", "to": "reference/static-functions/functions/table_getRowModel" },
{ "label": "table_getSelectedRowModel", "to": "reference/static-functions/functions/table_getSelectedRowModel" },
{ "label": "table_getSortedRowModel", "to": "reference/static-functions/functions/table_getSortedRowModel" },
{ "label": "table_getToggleAllColumnsVisibilityHandler", "to": "reference/static-functions/functions/table_getToggleAllColumnsVisibilityHandler" },
{ "label": "table_getToggleAllPageRowsSelectedHandler", "to": "reference/static-functions/functions/table_getToggleAllPageRowsSelectedHandler" },
{ "label": "table_getToggleAllRowsExpandedHandler", "to": "reference/static-functions/functions/table_getToggleAllRowsExpandedHandler" },
{ "label": "table_getToggleAllRowsSelectedHandler", "to": "reference/static-functions/functions/table_getToggleAllRowsSelectedHandler" },
{ "label": "table_getTopRows", "to": "reference/static-functions/functions/table_getTopRows" },
{ "label": "table_getTotalSize", "to": "reference/static-functions/functions/table_getTotalSize" },
{ "label": "table_getVisibleFlatColumns", "to": "reference/static-functions/functions/table_getVisibleFlatColumns" },
{ "label": "table_getVisibleLeafColumns", "to": "reference/static-functions/functions/table_getVisibleLeafColumns" },
{ "label": "table_lastPage", "to": "reference/static-functions/functions/table_lastPage" },
{ "label": "table_mergeOptions", "to": "reference/static-functions/functions/table_mergeOptions" },
{ "label": "table_nextPage", "to": "reference/static-functions/functions/table_nextPage" },
{ "label": "table_previousPage", "to": "reference/static-functions/functions/table_previousPage" },
{ "label": "table_reset", "to": "reference/static-functions/functions/table_reset" },
{ "label": "table_resetColumnFilters", "to": "reference/static-functions/functions/table_resetColumnFilters" },
{ "label": "table_resetColumnOrder", "to": "reference/static-functions/functions/table_resetColumnOrder" },
{ "label": "table_resetColumnPinning", "to": "reference/static-functions/functions/table_resetColumnPinning" },
{ "label": "table_resetColumnSizing", "to": "reference/static-functions/functions/table_resetColumnSizing" },
{ "label": "table_resetColumnVisibility", "to": "reference/static-functions/functions/table_resetColumnVisibility" },
{ "label": "table_resetExpanded", "to": "reference/static-functions/functions/table_resetExpanded" },
{ "label": "table_resetGlobalFilter", "to": "reference/static-functions/functions/table_resetGlobalFilter" },
{ "label": "table_resetGrouping", "to": "reference/static-functions/functions/table_resetGrouping" },
{ "label": "table_resetHeaderSizeInfo", "to": "reference/static-functions/functions/table_resetHeaderSizeInfo" },
{ "label": "table_resetPageIndex", "to": "reference/static-functions/functions/table_resetPageIndex" },
{ "label": "table_resetPageSize", "to": "reference/static-functions/functions/table_resetPageSize" },
{ "label": "table_resetPagination", "to": "reference/static-functions/functions/table_resetPagination" },
{ "label": "table_resetRowPinning", "to": "reference/static-functions/functions/table_resetRowPinning" },
{ "label": "table_resetRowSelection", "to": "reference/static-functions/functions/table_resetRowSelection" },
{ "label": "table_resetSorting", "to": "reference/static-functions/functions/table_resetSorting" },
{ "label": "table_setColumnFilters", "to": "reference/static-functions/functions/table_setColumnFilters" },
{ "label": "table_setColumnOrder", "to": "reference/static-functions/functions/table_setColumnOrder" },
{ "label": "table_setColumnPinning", "to": "reference/static-functions/functions/table_setColumnPinning" },
{ "label": "table_setColumnResizing", "to": "reference/static-functions/functions/table_setColumnResizing" },
{ "label": "table_setColumnSizing", "to": "reference/static-functions/functions/table_setColumnSizing" },
{ "label": "table_setColumnVisibility", "to": "reference/static-functions/functions/table_setColumnVisibility" },
{ "label": "table_setExpanded", "to": "reference/static-functions/functions/table_setExpanded" },
{ "label": "table_setGlobalFilter", "to": "reference/static-functions/functions/table_setGlobalFilter" },
{ "label": "table_setGrouping", "to": "reference/static-functions/functions/table_setGrouping" },
{ "label": "table_setOptions", "to": "reference/static-functions/functions/table_setOptions" },
{ "label": "table_setPageIndex", "to": "reference/static-functions/functions/table_setPageIndex" },
{ "label": "table_setPageSize", "to": "reference/static-functions/functions/table_setPageSize" },
{ "label": "table_setPagination", "to": "reference/static-functions/functions/table_setPagination" },
{ "label": "table_setRowPinning", "to": "reference/static-functions/functions/table_setRowPinning" },
{ "label": "table_setRowSelection", "to": "reference/static-functions/functions/table_setRowSelection" },
{ "label": "table_setSorting", "to": "reference/static-functions/functions/table_setSorting" },
{ "label": "table_syncExternalStateToBaseAtoms", "to": "reference/static-functions/functions/table_syncExternalStateToBaseAtoms" },
{ "label": "table_toggleAllColumnsVisible", "to": "reference/static-functions/functions/table_toggleAllColumnsVisible" },
{ "label": "table_toggleAllPageRowsSelected", "to": "reference/static-functions/functions/table_toggleAllPageRowsSelected" },
{ "label": "table_toggleAllRowsExpanded", "to": "reference/static-functions/functions/table_toggleAllRowsExpanded" },
{ "label": "table_toggleAllRowsSelected", "to": "reference/static-functions/functions/table_toggleAllRowsSelected" }
]
},
{
"collapsible": true,
"defaultCollapsed": true,
"label": "Legacy API Reference",
"children": [],
"frameworks": [
{
"label": "react",
"children": [
{ "label": "Legacy API Overview", "to": "framework/react/reference/legacy/index" },
{ "label": "useLegacyTable", "to": "framework/react/reference/legacy/functions/useLegacyTable" },
{ "label": "legacyCreateColumnHelper", "to": "framework/react/reference/legacy/functions/legacyCreateColumnHelper" },
{ "label": "getCoreRowModel", "to": "framework/react/reference/legacy/functions/getCoreRowModel" },
{ "label": "getFilteredRowModel", "to": "framework/react/reference/legacy/functions/getFilteredRowModel" },
{ "label": "getSortedRowModel", "to": "framework/react/reference/legacy/functions/getSortedRowModel" },
{ "label": "getGroupedRowModel", "to": "framework/react/reference/legacy/functions/getGroupedRowModel" },
{ "label": "getExpandedRowModel", "to": "framework/react/reference/legacy/functions/getExpandedRowModel" },
{ "label": "getPaginationRowModel", "to": "framework/react/reference/legacy/functions/getPaginationRowModel" },
{ "label": "getFacetedRowModel", "to": "framework/react/reference/legacy/functions/getFacetedRowModel" },
{ "label": "getFacetedMinMaxValues", "to": "framework/react/reference/legacy/functions/getFacetedMinMaxValues" },
{ "label": "getFacetedUniqueValues", "to": "framework/react/reference/legacy/functions/getFacetedUniqueValues" },
{ "label": "LegacyRowModelOptions", "to": "framework/react/reference/legacy/interfaces/LegacyRowModelOptions" },
{ "label": "LegacyTable", "to": "framework/react/reference/legacy/type-aliases/LegacyTable" },
{ "label": "LegacyTableOptions", "to": "framework/react/reference/legacy/type-aliases/LegacyTableOptions" },
{ "label": "LegacyReactTable", "to": "framework/react/reference/legacy/type-aliases/LegacyReactTable" },
{ "label": "LegacyColumnDef", "to": "framework/react/reference/legacy/type-aliases/LegacyColumnDef" },
{ "label": "LegacyColumn", "to": "framework/react/reference/legacy/type-aliases/LegacyColumn" },
{ "label": "LegacyRow", "to": "framework/react/reference/legacy/type-aliases/LegacyRow" },
{ "label": "LegacyCell", "to": "framework/react/reference/legacy/type-aliases/LegacyCell" },
{ "label": "LegacyHeader", "to": "framework/react/reference/legacy/type-aliases/LegacyHeader" },
{ "label": "LegacyHeaderGroup", "to": "framework/react/reference/legacy/type-aliases/LegacyHeaderGroup" }
]
}
]
},
{
"label": "Basic Examples",
"children": [],
"frameworks": [
{
"label": "angular",
"children": [
{ "label": "Basic (injectTable)", "to": "framework/angular/examples/basic-inject-table" },
{ "label": "Basic (createAppTable)", "to": "framework/angular/examples/basic-app-table" },
{ "label": "Basic (External State)", "to": "framework/angular/examples/basic-external-state" },
{ "label": "Basic (External Atoms)", "to": "framework/angular/examples/basic-external-atoms" },
{ "label": "Header Groups", "to": "framework/angular/examples/column-groups" }
]
},
{
"label": "lit",
"children": [
{ "label": "Basic (TableController)", "to": "framework/lit/examples/basic-table-controller" },
{ "label": "Basic (useAppTable)", "to": "framework/lit/examples/basic-app-table" },
{ "label": "Basic (External State)", "to": "framework/lit/examples/basic-external-state" },
{ "label": "Basic (External Atoms)", "to": "framework/lit/examples/basic-external-atoms" },
{ "label": "Header Groups", "to": "framework/lit/examples/column-groups" }
]
},
{
"label": "react",
"children": [
{ "label": "Basic (useTable)", "to": "framework/react/examples/basic-use-table" },
{ "label": "Basic (useAppTable)", "to": "framework/react/examples/basic-use-app-table" },
{ "label": "Basic (useLegacyTable)", "to": "framework/react/examples/basic-use-legacy-table" },
{ "label": "Basic (External State)", "to": "framework/react/examples/basic-external-state" },
{ "label": "Basic (External Atoms)", "to": "framework/react/examples/basic-external-atoms" },
{ "label": "Basic (Subscribe)", "to": "framework/react/examples/basic-subscribe" },
{ "label": "Header Groups", "to": "framework/react/examples/column-groups" }
]
},
{
"label": "solid",
"children": [
{ "label": "Basic (createTable)", "to": "framework/solid/examples/basic-use-table" },
{ "label": "Basic (createAppTable)", "to": "framework/solid/examples/basic-app-table" },
{ "label": "Basic (External State)", "to": "framework/solid/examples/basic-external-state" },
{ "label": "Basic (External Atoms)", "to": "framework/solid/examples/basic-external-atoms" },
{ "label": "Header Groups", "to": "framework/solid/examples/column-groups" }
]
},
{
"label": "svelte",
"children": [
{ "label": "Basic (createTable)", "to": "framework/svelte/examples/basic-create-table" },
{ "label": "Basic (createAppTable)", "to": "framework/svelte/examples/basic-app-table" },
{ "label": "Basic (Snippets)", "to": "framework/svelte/examples/basic-snippets" },
{ "label": "Basic (External State)", "to": "framework/svelte/examples/basic-external-state" },
{ "label": "Basic (External Atoms)", "to": "framework/svelte/examples/basic-external-atoms" },
{ "label": "Header Groups", "to": "framework/svelte/examples/column-groups" }
]
},
{
"label": "vue",
"children": [
{ "label": "Basic (useTable)", "to": "framework/vue/examples/basic-use-table" },
{ "label": "Basic (useAppTable)", "to": "framework/vue/examples/basic-use-app-table" },
{ "label": "Basic (External State)", "to": "framework/vue/examples/basic-external-state" },
{ "label": "Basic (External Atoms)", "to": "framework/vue/examples/basic-external-atoms" },
{ "label": "Header Groups", "to": "framework/vue/examples/column-groups" }
]
},
{
"label": "preact",