ados-rcm 1.1.308 → 1.1.309
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/AModule/AComponents/ADialog/ADialog.d.ts +12 -0
- package/dist/index.cjs.js +23 -23
- package/dist/index.es.js +2089 -2077
- package/package.json +1 -1
@@ -115,6 +115,18 @@ export interface IADialogProps {
|
|
115
115
|
* Description : if true, action buttons are not interactive
|
116
116
|
*/
|
117
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
|
*
|