ados-rcm 1.0.324 → 1.0.326

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.
@@ -31,16 +31,23 @@ export interface IATableTDProps<T extends IItem> extends IATableTHProps<T>, IATa
31
31
  }
32
32
  export interface IATableDef<T extends IItem> {
33
33
  /**
34
- * width? : TCanCallback<IATableTHProps<T>, number>
34
+ * width? : number = 80
35
35
  *
36
36
  * Description : width of the column
37
37
  */
38
- width?: TCanCallback<IATableTHProps<T>, number>;
38
+ width?: number;
39
39
  /**
40
- * minWidth? : TCanCallback<IATableTHProps<T>, number>
40
+ * noExpand? : boolean
41
+ *
42
+ * Description : decides whether the column can expand or not
43
+ */
44
+ noExpand?: boolean;
45
+ /**
46
+ * noResize? : boolean
41
47
  *
42
- * Description : minWidth of the column
48
+ * Description : decides whether the column can resize or not
43
49
  */
50
+ noShrink?: boolean;
44
51
  /**
45
52
  * align? : TCanCallback<IATableTHProps<T>, React.CSSProperties['justifyContent']>
46
53
  *
@@ -71,23 +78,6 @@ export interface IATableDef<T extends IItem> {
71
78
  * Description : decides whether the column is sortable or not
72
79
  */
73
80
  isSortable?: boolean;
74
- /**
75
- * noResize? : boolean
76
- *
77
- * Description : decides whether the column is resizable or not
78
- */
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;
91
81
  /**
92
82
  * sortF? : (a: T, b: T) => number
93
83
  *