Skip to content

Commit 84f9962

Browse files
authored
👌 IMPROVE: AlignType should match csstype Property.TextAlign (#986)
1 parent 649ed38 commit 84f9962

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

‎src/interface.ts‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ export interface ColumnGroupType<RecordType> extends ColumnSharedType<RecordType
8080
children: ColumnsType<RecordType>;
8181
}
8282

83-
export type AlignType = 'left' | 'center' | 'right';
83+
export type AlignType = 'start' | 'end' | 'left' | 'right' | 'center' | 'justify' | 'match-parent';
8484

8585
export interface ColumnType<RecordType> extends ColumnSharedType<RecordType> {
8686
colSpan?: number;

0 commit comments

Comments
 (0)