tabulify 1.0.4 → 1.0.5

Sign up to get free protection for your applications and to get access to all the features.
@@ -17,11 +17,10 @@ export interface Pagination {
17
17
  current?: number;
18
18
  onChange?: (page: number) => void;
19
19
  }
20
- export interface TableProps<T extends {
21
- key: React.Key;
22
- }> {
20
+ export interface TableProps<T> {
23
21
  columns: Column<T>[];
24
22
  dataSource: T[];
23
+ key: keyof T;
25
24
  rowSelection?: RowSelection<T>;
26
25
  pagination?: Pagination;
27
26
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tabulify",
3
- "version": "1.0.4",
3
+ "version": "1.0.5",
4
4
  "type": "module",
5
5
  "description": "A lightweight and customizable React table component.",
6
6
  "main": "dist/index.js",