ados-rcm 1.1.295 → 1.1.297
Sign up to get free protection for your applications and to get access to all the features.
@@ -22,6 +22,12 @@ export interface IABaseProps extends React.HTMLAttributes<HTMLElement> {
|
|
22
22
|
* Description : if truthy, dimming and spinner are applied.
|
23
23
|
*/
|
24
24
|
isLoading?: boolean;
|
25
|
+
/**
|
26
|
+
* isDimmed? : boolean
|
27
|
+
*
|
28
|
+
* Description : if truthy, dimming is applied.
|
29
|
+
*/
|
30
|
+
isDimmed?: boolean;
|
25
31
|
/**
|
26
32
|
* tooltip? : React.ReactNode
|
27
33
|
*
|
@@ -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' | 'Normal' | 'Semi-normal' | 'Neutral' | 'Caption';
|
13
|
+
type TSDC = 'Title-large' | 'Title-normal' | 'Button-label' | 'Normal' | 'Semi-normal' | 'Neutral' | 'Caption';
|
14
14
|
declare const keys: {
|
15
15
|
Display1: any;
|
16
16
|
Display2: any;
|