@fileverse/ui 4.1.2-patch-9 → 4.1.2-patch-10
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.
- package/dist/index.css +3 -0
- package/dist/index.es.d.ts +29 -0
- package/dist/index.es.js +1895 -1799
- package/package.json +1 -1
package/dist/index.css
CHANGED
package/dist/index.es.d.ts
CHANGED
|
@@ -792,6 +792,35 @@ export declare interface TextAreaFieldProps extends React_2.TextareaHTMLAttribut
|
|
|
792
792
|
isValid?: boolean;
|
|
793
793
|
}
|
|
794
794
|
|
|
795
|
+
export declare const TextAreaFieldV2: React_2.ForwardRefExoticComponent<TextAreaFieldV2Props & React_2.RefAttributes<HTMLTextAreaElement>>;
|
|
796
|
+
|
|
797
|
+
export declare interface TextAreaFieldV2Props extends React_2.InputHTMLAttributes<HTMLTextAreaElement> {
|
|
798
|
+
/**
|
|
799
|
+
* The label for the text field.
|
|
800
|
+
*/
|
|
801
|
+
label?: string;
|
|
802
|
+
/**
|
|
803
|
+
* The left icon for the text field.
|
|
804
|
+
*/
|
|
805
|
+
leftIcon?: React_2.ReactNode;
|
|
806
|
+
/**
|
|
807
|
+
* The right icon for the text field.
|
|
808
|
+
*/
|
|
809
|
+
rightIcon?: React_2.ReactNode;
|
|
810
|
+
/**
|
|
811
|
+
* Whether the text field is valid.
|
|
812
|
+
*/
|
|
813
|
+
isValid?: boolean;
|
|
814
|
+
/**
|
|
815
|
+
* The helper text for the text field.
|
|
816
|
+
*/
|
|
817
|
+
message?: string;
|
|
818
|
+
/**
|
|
819
|
+
* Event handler for the onChange event.
|
|
820
|
+
*/
|
|
821
|
+
onChange?: (e: React_2.ChangeEvent<HTMLTextAreaElement>) => void;
|
|
822
|
+
}
|
|
823
|
+
|
|
795
824
|
export declare const TextField: React_2.ForwardRefExoticComponent<TextFieldProps & React_2.RefAttributes<HTMLInputElement>>;
|
|
796
825
|
|
|
797
826
|
export declare interface TextFieldProps extends React_2.InputHTMLAttributes<HTMLInputElement> {
|