@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<T = any> {
165
+ export interface OSelectRenderingItem<TValue = any, TRaw = any> {
166
166
  index: number;
167
- item: T;
167
+ item: {
168
+ title: string;
169
+ value: TValue;
170
+ raw: TRaw;
171
+ };
168
172
  props: {
169
- onClick: (item: T) => void;
173
+ onClick: (item: TValue) => void;
170
174
  };
171
175
  }
172
176
  export {};
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@omnia/fx-models",
3
3
  "license": "MIT",
4
- "version": "8.0.21-dev",
4
+ "version": "8.0.22-dev",
5
5
  "description": "Provide Omnia Fx Models Stuffs.",
6
6
  "scripts": {
7
7
  "test": "echo \"Error: no test specified\" && exit 1"