hplx-react-elements-dev 1.3.42 → 1.3.44

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;
@@ -34,6 +34,7 @@ export interface ReusableTableProps<T> {
34
34
  enableTableFilter?: boolean;
35
35
  tableFilterProps?: I_TableFilterProps;
36
36
  headerAndPaginationDivClasses?: string;
37
+ tableMainParentDivClasses?: string;
37
38
  }
38
39
  export interface ITableColDef<T> {
39
40
  field: string;
@@ -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";
@@ -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;
package/package.json CHANGED
@@ -9,7 +9,7 @@
9
9
  "frontend",
10
10
  "healthplix"
11
11
  ],
12
- "version": "1.3.42",
12
+ "version": "1.3.44",
13
13
  "main": "dist/esm/index.js",
14
14
  "module": "dist/esm/index.js",
15
15
  "types": "dist/esm/index.d.ts",