ados-rcm 1.0.352 → 1.0.354

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 type TAButtonType = 'Primary' | 'Secondary' | 'Raw';
2
+ export declare const AButtonTypes: string[];
3
+ export type TAButtonTypes = 'Primary' | 'Secondary' | 'Raw';
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?: TAButtonType;
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
- type TAIconButtonTypes = 'Primary' | 'Raw';
4
+ export declare const AIconButtonTypes: string[];
5
+ export type TAIconButtonTypes = 'Primary' | 'Raw';
5
6
  interface IAIconButtonProps extends IABaseProps {
6
7
  /**
7
8
  * icon : TIcons | Exclude<React.ReactNode, string>;