ados-rcm 1.0.32 → 1.0.33

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.
@@ -130,4 +130,4 @@ export interface IASelectProps<I, S extends (null | I) | I[]> extends IABaseProp
130
130
  *
131
131
  */
132
132
  export declare const ASelect: <I, S extends I | I[] | null>(props: IASelectProps<I, S>) => React.ReactNode;
133
- export declare const DefaultOptionRenderer: <T>(props: IASelectOptionRendererProps<T>) => React.ReactNode;
133
+ export declare const DefaultOptionRenderer: <T>(props: IASelectOptionRendererProps<T>) => string | (T & undefined) | (T & number) | (T & false) | (T & true) | (T & React.ReactElement<any, string | React.JSXElementConstructor<any>>) | (T & Iterable<React.ReactNode>) | null;