ados-rcm 1.0.325 → 1.0.327
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.
- package/dist/AModule/AComponents/ATable/ATable.d.ts +11 -21
- package/dist/index.cjs.js +28 -28
- package/dist/index.es.js +3356 -3373
- package/package.json +1 -1
|
@@ -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? :
|
|
34
|
+
* width? : number = 80
|
|
35
35
|
*
|
|
36
36
|
* Description : width of the column
|
|
37
37
|
*/
|
|
38
|
-
width?:
|
|
38
|
+
width?: number;
|
|
39
39
|
/**
|
|
40
|
-
*
|
|
40
|
+
* noExpand? : boolean
|
|
41
|
+
*
|
|
42
|
+
* Description : decides whether the column can expand or not
|
|
43
|
+
*/
|
|
44
|
+
noExpand?: boolean;
|
|
45
|
+
/**
|
|
46
|
+
* noShrink? : boolean
|
|
41
47
|
*
|
|
42
|
-
* Description :
|
|
48
|
+
* Description : decides whether the column can shrink 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
|
*
|