ados-rcm 1.1.600 → 1.1.602

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.
@@ -57,29 +57,17 @@ export interface IAListViewDef<T extends IObject> {
57
57
  */
58
58
  content?: TCanCallback<IAListViewContentProps<T>, React.ReactNode>;
59
59
  /**
60
- * height? : number | string
60
+ * fixedHeight? : boolean
61
61
  *
62
- * Description : height of AListView
62
+ * Description : set row height to fixed or not
63
63
  */
64
- height?: number | string;
64
+ fixedHeight?: boolean;
65
65
  /**
66
66
  * label? : TCanCallback<IAListViewLabelProps<T>, React.ReactNode>
67
67
  *
68
68
  * Description : label of AListView
69
69
  */
70
70
  label?: TCanCallback<IAListViewLabelProps<T>, React.ReactNode>;
71
- /**
72
- * maxHeight? : number | string
73
- *
74
- * Description : maxHeight of AListView
75
- */
76
- maxHeight?: number | string;
77
- /**
78
- * minHeight? : number | string
79
- *
80
- * Description : minHeight of AListView
81
- */
82
- minHeight?: number | string;
83
71
  }
84
72
  export type TAListViewDefs<T extends IObject> = {
85
73
  [key in Exclude<keyof T, symbol>]?: IAListViewDef<T>;