@parasutcom/fds 0.1.16 → 0.1.18
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +10 -0
- package/dist/tanstack-table.d.ts +19 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -826,3 +826,13 @@ export declare function useIsMobile(): boolean;
|
|
|
826
826
|
export declare function useSidebar(): SidebarContextProps;
|
|
827
827
|
|
|
828
828
|
export { }
|
|
829
|
+
|
|
830
|
+
|
|
831
|
+
declare module '@tanstack/react-table' {
|
|
832
|
+
interface ColumnMeta<TData extends RowData, TValue> {
|
|
833
|
+
/** Cell and header content alignment */
|
|
834
|
+
align?: 'left' | 'right' | 'center';
|
|
835
|
+
/** Additional className applied to the sortable header button */
|
|
836
|
+
headerClassName?: string;
|
|
837
|
+
}
|
|
838
|
+
}
|
package/dist/tanstack-table.d.ts
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { Column } from '@tanstack/react-table';
|
|
2
2
|
import { ColumnDef } from '@tanstack/react-table';
|
|
3
3
|
import { ColumnFiltersState } from '@tanstack/react-table';
|
|
4
|
+
import { ColumnMeta } from '@tanstack/react-table';
|
|
4
5
|
import { flexRender } from '@tanstack/react-table';
|
|
5
6
|
import { getCoreRowModel } from '@tanstack/react-table';
|
|
6
7
|
import { getFilteredRowModel } from '@tanstack/react-table';
|
|
@@ -10,9 +11,11 @@ import { Header } from '@tanstack/react-table';
|
|
|
10
11
|
import { OnChangeFn } from '@tanstack/react-table';
|
|
11
12
|
import { PaginationState } from '@tanstack/react-table';
|
|
12
13
|
import { Row } from '@tanstack/react-table';
|
|
14
|
+
import { RowData } from '@tanstack/react-table';
|
|
13
15
|
import { RowSelectionState } from '@tanstack/react-table';
|
|
14
16
|
import { SortingState } from '@tanstack/react-table';
|
|
15
17
|
import { Table } from '@tanstack/react-table';
|
|
18
|
+
import { TableOptions } from '@tanstack/react-table';
|
|
16
19
|
import { useReactTable } from '@tanstack/react-table';
|
|
17
20
|
import { VisibilityState } from '@tanstack/react-table';
|
|
18
21
|
|
|
@@ -22,6 +25,8 @@ export { ColumnDef }
|
|
|
22
25
|
|
|
23
26
|
export { ColumnFiltersState }
|
|
24
27
|
|
|
28
|
+
export { ColumnMeta }
|
|
29
|
+
|
|
25
30
|
export { flexRender }
|
|
26
31
|
|
|
27
32
|
export { getCoreRowModel }
|
|
@@ -40,14 +45,28 @@ export { PaginationState }
|
|
|
40
45
|
|
|
41
46
|
export { Row }
|
|
42
47
|
|
|
48
|
+
export { RowData }
|
|
49
|
+
|
|
43
50
|
export { RowSelectionState }
|
|
44
51
|
|
|
45
52
|
export { SortingState }
|
|
46
53
|
|
|
47
54
|
export { Table }
|
|
48
55
|
|
|
56
|
+
export { TableOptions }
|
|
57
|
+
|
|
49
58
|
export { useReactTable }
|
|
50
59
|
|
|
51
60
|
export { VisibilityState }
|
|
52
61
|
|
|
53
62
|
export { }
|
|
63
|
+
|
|
64
|
+
|
|
65
|
+
declare module '@tanstack/react-table' {
|
|
66
|
+
interface ColumnMeta<TData extends RowData, TValue> {
|
|
67
|
+
/** Cell and header content alignment */
|
|
68
|
+
align?: 'left' | 'right' | 'center';
|
|
69
|
+
/** Additional className applied to the sortable header button */
|
|
70
|
+
headerClassName?: string;
|
|
71
|
+
}
|
|
72
|
+
}
|