ados-rcm 1.1.8 → 1.1.10

Sign up to get free protection for your applications and to get access to all the features.
@@ -73,6 +73,12 @@ export interface IATableDef<T extends IItem> {
73
73
  * Description : style of the th. I woudn't touch width, minWidth, maxWidth if I were you.
74
74
  */
75
75
  hStyle?: TCanCallback<IATableTHProps<T>, React.CSSProperties>;
76
+ /**
77
+ * hAlign? : TCanCallback<IATableTHProps<T>, React.CSSProperties['justifyContent']>
78
+ *
79
+ * Description : align of the th. type of justifyContent
80
+ */
81
+ hAlign?: TCanCallback<IATableTHProps<T>, React.CSSProperties['justifyContent']>;
76
82
  /**
77
83
  * isSortable? : boolean
78
84
  *