ados-rcm 1.0.327 → 1.0.329

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -37,17 +37,17 @@ export interface IATableDef<T extends IItem> {
37
37
  */
38
38
  width?: number;
39
39
  /**
40
- * noExpand? : boolean
40
+ * minWidth? : number = 25
41
41
  *
42
- * Description : decides whether the column can expand or not
42
+ * Description : minWidth of the column
43
43
  */
44
- noExpand?: boolean;
44
+ minWidth?: number;
45
45
  /**
46
- * noShrink? : boolean
46
+ * maxWidth? : number
47
47
  *
48
- * Description : decides whether the column can shrink or not
48
+ * Description : maxWidth of the column
49
49
  */
50
- noShrink?: boolean;
50
+ maxWidth?: number;
51
51
  /**
52
52
  * align? : TCanCallback<IATableTHProps<T>, React.CSSProperties['justifyContent']>
53
53
  *