hplx-react-elements-dev 1.1.50 → 1.1.52

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.
@@ -32,6 +32,7 @@ export interface DatePickerProps {
32
32
  disable?: boolean;
33
33
  placeholder?: string;
34
34
  disabledDates?: Date[];
35
+ disabledDay?: (date: Date) => boolean;
35
36
  selectDate?: any;
36
37
  dateVar: (val: Date) => void;
37
38
  minDate?: Date;
@@ -424,7 +425,7 @@ export interface AddSuggestionProps {
424
425
  inputFieldInputProps?: React.DetailedHTMLProps<React.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>;
425
426
  suffixInputProps?: React.DetailedHTMLProps<React.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>;
426
427
  suffixClassName?: string;
427
- onSuggestionClick?: (selectedValue: any, index?: number, _searchString?: string) => void;
428
+ onSuggestionClick?: (selectedValue: any, index?: number, _searchString?: string, _dropdownData?: any) => void;
428
429
  options?: Array<DropdownItemsProps>;
429
430
  suggestionValue?: string;
430
431
  handleSuggestionValChange?: (value: any, fromEvent?: string) => void;
package/package.json CHANGED
@@ -9,7 +9,7 @@
9
9
  "frontend",
10
10
  "healthplix"
11
11
  ],
12
- "version": "1.1.50",
12
+ "version": "1.1.52",
13
13
  "main": "dist/esm/index.js",
14
14
  "module": "dist/esm/index.js",
15
15
  "types": "dist/esm/index.d.ts",