hplx-react-elements-dev 1.3.8 → 1.3.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.
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
2
|
import { TextAreaFieldProps } from "../types";
|
|
3
|
-
declare const TextAreaField: ({ label, hint_text_icon, hint_text, errorMsg, inputProps, className, rows, isDynamicHeight,
|
|
3
|
+
declare const TextAreaField: ({ label, hint_text_icon, hint_text, errorMsg, inputProps, className, rows, isDynamicHeight, collapseOnBlur, }: TextAreaFieldProps) => JSX.Element;
|
|
4
4
|
export default TextAreaField;
|
package/dist/esm/types.d.ts
CHANGED
|
@@ -163,6 +163,7 @@ export interface TextAreaFieldProps {
|
|
|
163
163
|
className?: string;
|
|
164
164
|
rows?: number;
|
|
165
165
|
isDynamicHeight?: boolean;
|
|
166
|
+
collapseOnBlur?: boolean;
|
|
166
167
|
isFocus?: boolean;
|
|
167
168
|
}
|
|
168
169
|
type badgesizeType = "sm" | "md" | "lg";
|
|
@@ -465,6 +466,7 @@ export interface AddSuggestionProps {
|
|
|
465
466
|
className?: string;
|
|
466
467
|
rows?: number;
|
|
467
468
|
isDynamicHeight?: boolean;
|
|
469
|
+
collapseOnBlur?: boolean;
|
|
468
470
|
width?: string | number;
|
|
469
471
|
height?: string;
|
|
470
472
|
labelSize?: typographyTextType;
|