@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 CHANGED
@@ -1837,6 +1837,9 @@ video {
1837
1837
  text-overflow: ellipsis;
1838
1838
  white-space: nowrap;
1839
1839
  }
1840
+ .text-ellipsis {
1841
+ text-overflow: ellipsis;
1842
+ }
1840
1843
  .whitespace-nowrap {
1841
1844
  white-space: nowrap;
1842
1845
  }
@@ -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> {