From 728bf2102b94ed4e61eea4417960fe9f71caf651 Mon Sep 17 00:00:00 2001 From: Danial Soheili Date: Sat, 6 May 2023 08:50:29 +0330 Subject: [PATCH] =?UTF-8?q?=F0=9F=91=8C=20IMPROVE:=20AlignType=20should=20?= =?UTF-8?q?match=20csstype=20Property.TextAlign?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/interface.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/interface.ts b/src/interface.ts index d3c2c99a6..c07e65c98 100644 --- a/src/interface.ts +++ b/src/interface.ts @@ -80,7 +80,7 @@ export interface ColumnGroupType extends ColumnSharedType; } -export type AlignType = 'left' | 'center' | 'right'; +export type AlignType = 'start' | 'end' | 'left' | 'right' | 'center' | 'justify' | 'match-parent'; export interface ColumnType extends ColumnSharedType { colSpan?: number;