ados-rcm 1.0.371 → 1.0.373
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.
|
@@ -3,7 +3,7 @@ import { IAWrapProps } from '../AWrap/AWrap';
|
|
|
3
3
|
import { IABaseProps } from '../ABase/ABase';
|
|
4
4
|
import { TUseValues } from '../../AHooks/useValues';
|
|
5
5
|
export declare const ATextAreaTypes: readonly ["Primary", "Secondary", "ReadOnly", "Error"];
|
|
6
|
-
export type
|
|
6
|
+
export type TTextAreaTypes = 'Primary' | 'Secondary' | 'ReadOnly' | 'Error';
|
|
7
7
|
export interface IATextAreaProps extends IABaseProps, IAWrapProps {
|
|
8
8
|
/**
|
|
9
9
|
* onEnterPress? : (value: string) => void
|
|
@@ -16,7 +16,7 @@ export interface IATextAreaProps extends IABaseProps, IAWrapProps {
|
|
|
16
16
|
*
|
|
17
17
|
* Description : type of ATextArea
|
|
18
18
|
*/
|
|
19
|
-
type?:
|
|
19
|
+
type?: TTextAreaTypes;
|
|
20
20
|
/**
|
|
21
21
|
* textAreaRef? : React.RefObject<HTMLTextAreaElement>
|
|
22
22
|
*
|