ados-rcm 1.1.296 → 1.1.298
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
|
*
|
@@ -1,6 +1,6 @@
|
|
1
1
|
/// <reference types="react" />
|
2
2
|
import { IABaseProps } from '../ABase/ABase';
|
3
|
-
import { TIcons } from '../AIcon/AIcon';
|
3
|
+
import { TIconSize, TIcons } from '../AIcon/AIcon';
|
4
4
|
export declare const AIconButtonTypes: readonly ["Primary", "Secondary", "Raw"];
|
5
5
|
export type TAIconButtonTypes = (typeof AIconButtonTypes)[number];
|
6
6
|
export interface IAIconButtonProps extends IABaseProps {
|
@@ -16,6 +16,12 @@ export interface IAIconButtonProps extends IABaseProps {
|
|
16
16
|
* Description : type of AIconButton
|
17
17
|
*/
|
18
18
|
type?: TAIconButtonTypes;
|
19
|
+
/**
|
20
|
+
* iconSize? : number
|
21
|
+
*
|
22
|
+
* Description : size of icon.
|
23
|
+
*/
|
24
|
+
iconSize?: TIconSize;
|
19
25
|
}
|
20
26
|
/**
|
21
27
|
* AComponent : AIconButton
|