ados-rcm 1.0.352 → 1.0.353
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -1,12 +1,13 @@
|
|
|
1
1
|
import { IABaseProps } from '../ABase/ABase';
|
|
2
|
-
export
|
|
2
|
+
export declare const AButtonTypes: readonly ["Primary", "Secondary", "Raw"];
|
|
3
|
+
export type TAButtonTypes = (typeof AButtonTypes)[number];
|
|
3
4
|
export interface IAButtonProps extends IABaseProps {
|
|
4
5
|
/**
|
|
5
6
|
* type? : TAButtonType = 'Primary'
|
|
6
7
|
*
|
|
7
8
|
* Description : type of IAButton
|
|
8
9
|
*/
|
|
9
|
-
type?:
|
|
10
|
+
type?: TAButtonTypes;
|
|
10
11
|
}
|
|
11
12
|
/**
|
|
12
13
|
* AComponent : AButton
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
2
|
import { IABaseProps } from '../ABase/ABase';
|
|
3
3
|
import { TIcons } from '../AIcon/AIcon';
|
|
4
|
-
|
|
4
|
+
export declare const AIconButtonTypes: readonly ["Primary", "Raw"];
|
|
5
|
+
export type TAIconButtonTypes = (typeof AIconButtonTypes)[number];
|
|
5
6
|
interface IAIconButtonProps extends IABaseProps {
|
|
6
7
|
/**
|
|
7
8
|
* icon : TIcons | Exclude<React.ReactNode, string>;
|