ados-rcm 1.0.356 → 1.0.357

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,5 +1,5 @@
1
1
  import { IABaseProps } from '../ABase/ABase';
2
- export declare const AButtonTypes: string[];
2
+ export declare const AButtonTypes: readonly ["Primary", "Secondary", "Raw"];
3
3
  export type TAButtonTypes = 'Primary' | 'Secondary' | 'Raw';
4
4
  export interface IAButtonProps extends IABaseProps {
5
5
  /**
@@ -1,7 +1,7 @@
1
1
  /// <reference types="react" />
2
2
  import { IABaseProps } from '../ABase/ABase';
3
3
  import { TIcons } from '../AIcon/AIcon';
4
- export declare const AIconButtonTypes: string[];
4
+ export declare const AIconButtonTypes: readonly ["Primary", "Raw"];
5
5
  export type TAIconButtonTypes = 'Primary' | 'Raw';
6
6
  interface IAIconButtonProps extends IABaseProps {
7
7
  /**
@@ -2,7 +2,8 @@ import React from 'react';
2
2
  import { TUseValues } from '../../AHooks/useValues';
3
3
  import { IABaseProps } from '../ABase/ABase';
4
4
  import { IAWrapProps } from '../AWrap/AWrap';
5
- export type TInputType = 'Primary' | 'Secondary' | 'ReadOnly' | 'Error';
5
+ export declare const AInputTypes: readonly ["Primary", "Secondary", "ReadOnly", "Error"];
6
+ export type TInputTypes = 'Primary' | 'Secondary' | 'ReadOnly' | 'Error';
6
7
  export interface IAInputProps extends IABaseProps, IAWrapProps {
7
8
  /**
8
9
  * onEnterPress? : (value: string) => void
@@ -15,7 +16,7 @@ export interface IAInputProps extends IABaseProps, IAWrapProps {
15
16
  *
16
17
  * Description : type of AInput
17
18
  */
18
- type?: TInputType;
19
+ type?: TInputTypes;
19
20
  /**
20
21
  * inputRef? : React.RefObject<HTMLInputElement>
21
22
  *
@@ -2,6 +2,7 @@ import React from 'react';
2
2
  import { IAWrapProps } from '../AWrap/AWrap';
3
3
  import { IABaseProps } from '../ABase/ABase';
4
4
  import { TUseValues } from '../../AHooks/useValues';
5
+ export declare const ATextAreaTypes: readonly ["Primary", "Secondary", "ReadOnly", "Error"];
5
6
  export type TTextAreaType = 'Primary' | 'Secondary' | 'ReadOnly' | 'Error';
6
7
  export interface IATextAreaProps extends IABaseProps, IAWrapProps {
7
8
  /**