@omnia/fx-models 8.0.21-dev → 8.0.22-dev
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.
|
@@ -162,11 +162,15 @@ export type OInfiniteScrollLoadOptions = {
|
|
|
162
162
|
done: (status: OInfiniteScrollStatusValues) => void;
|
|
163
163
|
};
|
|
164
164
|
/** Select */
|
|
165
|
-
export interface OSelectRenderingItem<
|
|
165
|
+
export interface OSelectRenderingItem<TValue = any, TRaw = any> {
|
|
166
166
|
index: number;
|
|
167
|
-
item:
|
|
167
|
+
item: {
|
|
168
|
+
title: string;
|
|
169
|
+
value: TValue;
|
|
170
|
+
raw: TRaw;
|
|
171
|
+
};
|
|
168
172
|
props: {
|
|
169
|
-
onClick: (item:
|
|
173
|
+
onClick: (item: TValue) => void;
|
|
170
174
|
};
|
|
171
175
|
}
|
|
172
176
|
export {};
|