ados-rcm 1.0.353 → 1.0.355
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,6 +1,6 @@
|
|
|
1
1
|
import { IABaseProps } from '../ABase/ABase';
|
|
2
|
-
export declare const AButtonTypes:
|
|
3
|
-
export type TAButtonTypes =
|
|
2
|
+
export declare const AButtonTypes: string[];
|
|
3
|
+
export type TAButtonTypes = 'Primary' | 'Secondary' | 'Raw';
|
|
4
4
|
export interface IAButtonProps extends IABaseProps {
|
|
5
5
|
/**
|
|
6
6
|
* type? : TAButtonType = 'Primary'
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
2
|
import { IABaseProps } from '../ABase/ABase';
|
|
3
3
|
import { TIcons } from '../AIcon/AIcon';
|
|
4
|
-
export declare const AIconButtonTypes:
|
|
5
|
-
export type TAIconButtonTypes =
|
|
4
|
+
export declare const AIconButtonTypes: string[];
|
|
5
|
+
export type TAIconButtonTypes = 'Primary' | 'Raw';
|
|
6
6
|
interface IAIconButtonProps extends IABaseProps {
|
|
7
7
|
/**
|
|
8
8
|
* icon : TIcons | Exclude<React.ReactNode, string>;
|