hplx-react-elements-dev 1.3.42 → 1.3.43
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 { InputTagProps } from "../types";
|
|
3
|
-
declare const InputTagWithCursorPosition: ({ inputProps, className, dropdownClassName, options, tagList, tagString, tagClassName, handleValChange, onDropdownClick, allowDuplicates, getInputValue, shouldModifyTextCase, isScrollUp, elemID, isCustomValueAllowed, }: InputTagProps) => JSX.Element;
|
|
3
|
+
declare const InputTagWithCursorPosition: ({ inputProps, className, dropdownClassName, options, tagList, tagString, tagClassName, handleValChange, onDropdownClick, allowDuplicates, getInputValue, shouldModifyTextCase, isScrollUp, elemID, isCustomValueAllowed, recordingButton, }: InputTagProps) => JSX.Element;
|
|
4
4
|
export default InputTagWithCursorPosition;
|
|
@@ -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, collapseOnBlur, }: TextAreaFieldProps) => JSX.Element;
|
|
3
|
+
declare const TextAreaField: ({ label, hint_text_icon, hint_text, errorMsg, inputProps, className, rows, isDynamicHeight, collapseOnBlur, recordingButton, }: TextAreaFieldProps) => JSX.Element;
|
|
4
4
|
export default TextAreaField;
|
package/dist/esm/types.d.ts
CHANGED
|
@@ -166,6 +166,7 @@ export interface TextAreaFieldProps {
|
|
|
166
166
|
isDynamicHeight?: boolean;
|
|
167
167
|
collapseOnBlur?: boolean;
|
|
168
168
|
isFocus?: boolean;
|
|
169
|
+
recordingButton?: React.ReactNode;
|
|
169
170
|
}
|
|
170
171
|
type badgesizeType = "sm" | "md" | "lg";
|
|
171
172
|
type badgeiconType = "Left" | "Right" | "Only";
|
|
@@ -506,6 +507,7 @@ export interface AddSuggestionProps {
|
|
|
506
507
|
getInputValue?: (value: string) => void;
|
|
507
508
|
isScrolllUp?: boolean;
|
|
508
509
|
elemID?: string;
|
|
510
|
+
recordingButton?: React.ReactNode;
|
|
509
511
|
}
|
|
510
512
|
export interface DoubleInputProps {
|
|
511
513
|
fieldColor?: string;
|
|
@@ -564,6 +566,7 @@ export interface InputTagProps {
|
|
|
564
566
|
isScrollUp?: boolean;
|
|
565
567
|
elemID?: string;
|
|
566
568
|
isCustomValueAllowed?: boolean;
|
|
569
|
+
recordingButton?: React.ReactNode;
|
|
567
570
|
}
|
|
568
571
|
export interface CarouselProps {
|
|
569
572
|
leftIconClassName?: string;
|