Skip to content

Commit

Permalink
clean uo
Browse files Browse the repository at this point in the history
  • Loading branch information
zombieJ committed Oct 30, 2019
1 parent 5f8c8ae commit df5c365
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions src/Table.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@
* - onRowMouseEnter
* - onRowMouseLeave
* - getBodyWrapper
* - bodyStyle
* - childrenColumnName
*
* Deprecated:
* - All expanded props, move into expandable
Expand Down Expand Up @@ -95,18 +97,13 @@ export interface TableProps<RecordType extends DefaultRecordType>
footer?: PanelRender<RecordType>;
summary?: (data: RecordType[]) => React.ReactNode;

// TODO: Handle this
// Customize
id?: string;
showHeader?: boolean;
components?: TableComponents;
onRow?: GetComponentProps<RecordType>;
onHeaderRow?: GetComponentProps<ColumnType<RecordType>[]>;
emptyText?: React.ReactNode | (() => React.ReactNode);

// childrenColumnName?: string;

// bodyStyle?: React.CSSProperties;
}

function Table<RecordType extends DefaultRecordType>(props: TableProps<RecordType>) {
Expand Down

0 comments on commit df5c365

Please sign in to comment.