hplx-react-elements-dev 1.1.94 → 1.1.96

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 { InputFieldProps } from "../types";
3
- declare const InputField: ({ label, labelColor, labelSize, height, start_icon, width, border, end_icon, hint_text_icon, prefix, suffixButton, suffix, hint_text, char_count, errorMsg, inputProps, suffixInputProps, isborderRequired, suffixDropdown, isSuffixEditable, suffixPlaceholder, suffixClassName, fieldColor, handleSuffixClick, className, showEmailSuggestions, }: InputFieldProps) => JSX.Element;
3
+ declare const InputField: ({ label, labelColor, labelSize, height, start_icon, width, border, end_icon, hint_text_icon, prefix, suffixButton, suffix, hint_text, char_count, errorMsg, inputProps, suffixInputProps, isborderRequired, suffixDropdown, isSuffixEditable, suffixPlaceholder, suffixClassName, fieldColor, handleSuffixClick, className, classNameParentDiv, showEmailSuggestions, }: InputFieldProps) => JSX.Element;
4
4
  export default InputField;
@@ -3,6 +3,7 @@ export interface InputFieldProps {
3
3
  label?: string;
4
4
  fieldColor?: string;
5
5
  suffixClassName?: string;
6
+ classNameParentDiv?: string;
6
7
  width?: string | number;
7
8
  border?: string;
8
9
  labelSize?: typographyTextType;
@@ -68,6 +69,7 @@ export interface DatePickerProps {
68
69
  handleSuffixValChange?: (value: any) => void;
69
70
  id?: string;
70
71
  dayContentRenderer?: ((date: Date) => React.ReactNode) | undefined;
72
+ format?: string;
71
73
  }
72
74
  export interface CalenderViewProps {
73
75
  date1?: Date;
@@ -313,6 +315,7 @@ export interface CollapsibleCardProps {
313
315
  handleCollapsibleDisplay?: Function;
314
316
  headerRightChildren?: ReactNode;
315
317
  expanded?: boolean;
318
+ classNameAnimationDiv?: string;
316
319
  }
317
320
  export type RadioBtnSizeType = "sm" | "md";
318
321
  export type RadioBtnType = "checkmark" | "dot";
package/package.json CHANGED
@@ -9,7 +9,7 @@
9
9
  "frontend",
10
10
  "healthplix"
11
11
  ],
12
- "version": "1.1.94",
12
+ "version": "1.1.96",
13
13
  "main": "dist/esm/index.js",
14
14
  "module": "dist/esm/index.js",
15
15
  "types": "dist/esm/index.d.ts",