Allow more alignments

Summary: Allows `flex-start` and `flex-end` as aligment values on table cells.

Reviewed By: danielbuechele

Differential Revision: D15754424

fbshipit-source-id: 67449e429e6841800cfab7728f51e2d59cb36f0f
This commit is contained in:
David Aurelio
2019-06-11 09:20:12 -07:00
committed by Facebook Github Bot
parent 8dc9e5aee2
commit c4f395dda2

View File

@@ -61,7 +61,7 @@ export type TableBodyColumn = {|
sortValue?: string | number, sortValue?: string | number,
isFilterable?: boolean, isFilterable?: boolean,
value: any, value: any,
align?: 'left' | 'center' | 'right', align?: 'left' | 'center' | 'right' | 'flex-start' | 'flex-end',
title?: string, title?: string,
|}; |};