Skip to content

Commit 495f0ed

Browse files
committed
fix global faceting to column faceting
1 parent 232c5ea commit 495f0ed

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

examples/angular/filters/src/app/app.component.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ import {
1515
createPaginatedRowModel,
1616
createSortedRowModel,
1717
filterFns,
18-
globalFacetingFeature,
1918
injectTable,
2019
isFunction,
2120
rowPaginationFeature,

packages/table-core/src/types/Table.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ export type Table<
7575
| ('columnVisibilityFeature' extends keyof TFeatures
7676
? Table_ColumnVisibility<TFeatures, TData>
7777
: never)
78-
| ('globalFacetingFeature' extends keyof TFeatures
78+
| ('columnFacetingFeature' extends keyof TFeatures
7979
? Table_ColumnFaceting<TFeatures, TData>
8080
: never)
8181
| ('globalFilteringFeature' extends keyof TFeatures

0 commit comments

Comments
 (0)