hplx-react-elements-dev 1.1.51 → 1.1.53
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.
package/dist/esm/types.d.ts
CHANGED
|
@@ -425,7 +425,7 @@ export interface AddSuggestionProps {
|
|
|
425
425
|
inputFieldInputProps?: React.DetailedHTMLProps<React.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>;
|
|
426
426
|
suffixInputProps?: React.DetailedHTMLProps<React.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>;
|
|
427
427
|
suffixClassName?: string;
|
|
428
|
-
onSuggestionClick?: (selectedValue: any, index?: number, _searchString?: string) => void;
|
|
428
|
+
onSuggestionClick?: (selectedValue: any, index?: number, _searchString?: string, _dropdownData?: any) => void;
|
|
429
429
|
options?: Array<DropdownItemsProps>;
|
|
430
430
|
suggestionValue?: string;
|
|
431
431
|
handleSuggestionValChange?: (value: any, fromEvent?: string) => void;
|
|
@@ -434,6 +434,15 @@ export interface AddSuggestionProps {
|
|
|
434
434
|
getInputValue?: (value: string) => void;
|
|
435
435
|
}
|
|
436
436
|
export interface DoubleInputProps {
|
|
437
|
+
fieldColor?: string;
|
|
438
|
+
selectDate?: any;
|
|
439
|
+
dateVar?: (val: Date) => void;
|
|
440
|
+
placeholder?: string;
|
|
441
|
+
width?: string;
|
|
442
|
+
isborderRequired?: boolean;
|
|
443
|
+
disable?: boolean;
|
|
444
|
+
disabledDates?: Date[];
|
|
445
|
+
isCalendar?: boolean;
|
|
437
446
|
label?: string;
|
|
438
447
|
labelSize?: typographyTextType;
|
|
439
448
|
labelColor?: string;
|