ados-rcm 1.1.308 → 1.1.310
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/AModule/AUtils/sF.d.ts +1 -1
- 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
|
*
|
@@ -10,7 +10,7 @@ declare global {
|
|
10
10
|
type CSSModuleClasses = {
|
11
11
|
readonly [key: string]: string;
|
12
12
|
};
|
13
|
-
type TSDC = 'Title-large' | 'Title-normal' | 'Button-label' | '
|
13
|
+
type TSDC = 'Title-large' | 'Title-normal' | 'Button-label' | 'Body' | 'Body-reading' | 'Caption' | 'Caption-reading';
|
14
14
|
declare const keys: {
|
15
15
|
Display1: any;
|
16
16
|
Display2: any;
|