ados-rcm 1.0.15 → 1.0.17

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.
@@ -69,7 +69,7 @@ export interface IAListViewDef<T extends IObject> {
69
69
  content?: TCanCallback<IAListViewContentProps<T>, React.ReactNode>;
70
70
  }
71
71
  export type TAListViewDefs<T extends IObject> = {
72
- [key in Exclude<keyof T, symbol>]: IAListViewDef<T>;
72
+ [key in Exclude<keyof T, symbol>]?: IAListViewDef<T>;
73
73
  } & {
74
74
  [key in TIdx]?: IAListViewDef<T>;
75
75
  };
@@ -92,6 +92,12 @@ export interface IAListViewProps<T extends IObject> extends IABaseProps {
92
92
  * Description : item of AListView
93
93
  */
94
94
  item?: T;
95
+ /**
96
+ * rowHeight? : number | string
97
+ *
98
+ * Description : rowHeight of AListView
99
+ */
100
+ rowHeight?: number | string;
95
101
  }
96
102
  /**
97
103
  * AComponent : AListView