hplx-react-elements-dev 1.3.41 → 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;
@@ -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";
@@ -244,6 +245,7 @@ export interface ButtonGroupsProps {
244
245
  style?: {};
245
246
  selectedButtonClassName?: string;
246
247
  buttonLabelClassName?: string;
248
+ labelSize?: typographyTextType;
247
249
  }
248
250
  type tooltipPosition = "Top" | "Top end" | "Top start" | "Bottom" | "Left" | "Right";
249
251
  type toolTipTheme = "dark" | "light";
@@ -505,6 +507,7 @@ export interface AddSuggestionProps {
505
507
  getInputValue?: (value: string) => void;
506
508
  isScrolllUp?: boolean;
507
509
  elemID?: string;
510
+ recordingButton?: React.ReactNode;
508
511
  }
509
512
  export interface DoubleInputProps {
510
513
  fieldColor?: string;
@@ -563,6 +566,7 @@ export interface InputTagProps {
563
566
  isScrollUp?: boolean;
564
567
  elemID?: string;
565
568
  isCustomValueAllowed?: boolean;
569
+ recordingButton?: React.ReactNode;
566
570
  }
567
571
  export interface CarouselProps {
568
572
  leftIconClassName?: string;
package/package.json CHANGED
@@ -9,7 +9,7 @@
9
9
  "frontend",
10
10
  "healthplix"
11
11
  ],
12
- "version": "1.3.41",
12
+ "version": "1.3.43",
13
13
  "main": "dist/esm/index.js",
14
14
  "module": "dist/esm/index.js",
15
15
  "types": "dist/esm/index.d.ts",