ados-rcm 1.0.328 → 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,11 +37,17 @@ export interface IATableDef<T extends IItem> {
37
37
  */
38
38
  width?: number;
39
39
  /**
40
- * resizeType? : 'fixed' | 'noShrink' | 'noExpand' | 'flex'
40
+ * minWidth? : number = 25
41
41
  *
42
- * Description : decides the column width resize behavior
42
+ * Description : minWidth of the column
43
43
  */
44
- resizeType?: 'fixed' | 'noShrink' | 'noExpand' | 'flex';
44
+ minWidth?: number;
45
+ /**
46
+ * maxWidth? : number
47
+ *
48
+ * Description : maxWidth of the column
49
+ */
50
+ maxWidth?: number;
45
51
  /**
46
52
  * align? : TCanCallback<IATableTHProps<T>, React.CSSProperties['justifyContent']>
47
53
  *