hplx-react-elements-dev 1.3.37 → 1.3.39
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, errorMsgClassName, inputProps, suffixInputProps, isborderRequired, suffixDropdown, isSuffixEditable, suffixPlaceholder, suffixClassName, fieldColor, handleSuffixClick, className, classNameParentDiv, showEmailSuggestions, placeholderStyle, showRequired, }: 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, errorMsgClassName, inputProps, suffixInputProps, isborderRequired, suffixDropdown, isSuffixEditable, suffixPlaceholder, suffixClassName, fieldColor, handleSuffixClick, className, classNameParentDiv, showEmailSuggestions, placeholderStyle, showRequired, labelClassName }: InputFieldProps) => JSX.Element;
|
|
4
4
|
export default InputField;
|
package/dist/esm/types.d.ts
CHANGED
|
@@ -9,6 +9,7 @@ interface placeholderStyle {
|
|
|
9
9
|
export interface InputFieldProps {
|
|
10
10
|
label?: string;
|
|
11
11
|
fieldColor?: string;
|
|
12
|
+
labelClassName?: string;
|
|
12
13
|
suffixClassName?: string;
|
|
13
14
|
classNameParentDiv?: string;
|
|
14
15
|
width?: string | number;
|
|
@@ -627,5 +628,6 @@ export interface DateAndTimePickerProps {
|
|
|
627
628
|
minDate?: Date | null;
|
|
628
629
|
maxDate?: Date | null;
|
|
629
630
|
applyChanges: (selectedDate: Date) => void;
|
|
631
|
+
datePickerAbsoluteClasses: string;
|
|
630
632
|
}
|
|
631
633
|
export {};
|