ados-rcm 1.0.34 → 1.0.35

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.
@@ -65,11 +65,17 @@ export interface IADialogProps {
65
65
  */
66
66
  children?: React.ReactNode;
67
67
  /**
68
- * dialogStyle? : React.CSSProperties
68
+ * style? : React.CSSProperties
69
69
  *
70
70
  * Description : style of the dialog
71
71
  */
72
- dialogStyle?: React.CSSProperties;
72
+ style?: React.CSSProperties;
73
+ /**
74
+ * bodyStyle? : React.CSSProperties
75
+ *
76
+ * Description : bodyStyle of the dialog
77
+ */
78
+ bodyStyle?: React.CSSProperties;
73
79
  /**
74
80
  * onOk : (e: IAEventCallers) => void;
75
81
  *