ados-rcm 1.0.32 → 1.0.34
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.
|
@@ -64,6 +64,12 @@ export interface IADialogProps {
|
|
|
64
64
|
* Description : children of the dialog
|
|
65
65
|
*/
|
|
66
66
|
children?: React.ReactNode;
|
|
67
|
+
/**
|
|
68
|
+
* dialogStyle? : React.CSSProperties
|
|
69
|
+
*
|
|
70
|
+
* Description : style of the dialog
|
|
71
|
+
*/
|
|
72
|
+
dialogStyle?: React.CSSProperties;
|
|
67
73
|
/**
|
|
68
74
|
* onOk : (e: IAEventCallers) => void;
|
|
69
75
|
*
|
|
@@ -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;
|