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