ados-rcm 1.1.307 → 1.1.308
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,11 @@ export interface IADialogProps {
|
|
110
110
|
*/
|
111
111
|
actionStyle?: React.CSSProperties;
|
112
112
|
/**
|
113
|
-
*
|
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
|
-
|
117
|
+
buttonNoInteractive?: boolean;
|
118
118
|
/**
|
119
119
|
* onOk : (e: IAEvent) => void;
|
120
120
|
*
|