ados-rcm 1.0.322 → 1.0.323

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.
@@ -41,7 +41,6 @@ export interface IATableDef<T extends IItem> {
41
41
  *
42
42
  * Description : minWidth of the column
43
43
  */
44
- minWidth?: TCanCallback<IATableTHProps<T>, number>;
45
44
  /**
46
45
  * align? : TCanCallback<IATableTHProps<T>, React.CSSProperties['justifyContent']>
47
46
  *
@@ -77,7 +76,18 @@ export interface IATableDef<T extends IItem> {
77
76
  *
78
77
  * Description : decides whether the column is resizable or not
79
78
  */
80
- noResize?: boolean;
79
+ /**
80
+ * noExpand? : boolean
81
+ *
82
+ * Description : decides whether the column is expandable or not
83
+ */
84
+ noExpand?: boolean;
85
+ /**
86
+ * noShrink? : boolean
87
+ *
88
+ * Description : decides whether the column is shrinkable or not
89
+ */
90
+ noShrink?: boolean;
81
91
  /**
82
92
  * sortF? : (a: T, b: T) => number
83
93
  *