ados-rcm 1.1.307 → 1.1.309

Sign up to get free protection for your applications and to get access to all the features.
@@ -8,6 +8,12 @@ export interface IAButtonProps extends IABaseProps {
8
8
  * Description : type of IAButton
9
9
  */
10
10
  type?: TAButtonTypes;
11
+ /**
12
+ * noInteractive? : boolean = false
13
+ *
14
+ * Description : if true, the button is not interactive
15
+ */
16
+ noInteractive?: boolean;
11
17
  }
12
18
  /**
13
19
  * AComponent : AButton
@@ -110,11 +110,23 @@ export interface IADialogProps {
110
110
  */
111
111
  actionStyle?: React.CSSProperties;
112
112
  /**
113
- * isInteractive? : boolean = true
113
+ * buttonNoInteractive? : boolean
114
114
  *
115
- * Description : if true, action buttons are interactive
115
+ * Description : if true, action buttons are not interactive
116
116
  */
117
- isInteractive?: boolean;
117
+ buttonNoInteractive?: boolean;
118
+ /**
119
+ * okButtonClassName? : string
120
+ *
121
+ * Description : className of the ok button
122
+ */
123
+ okButtonClassName?: string;
124
+ /**
125
+ * cancelButtonClassName? : string
126
+ *
127
+ * Description : className of the cancel button
128
+ */
129
+ cancelButtonClassName?: string;
118
130
  /**
119
131
  * onOk : (e: IAEvent) => void;
120
132
  *