hplx-react-elements-dev 1.1.67 → 1.1.68

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.
@@ -521,4 +521,26 @@ export interface NotificationProps {
521
521
  children?: ReactNode;
522
522
  handleCloseClick?: () => void;
523
523
  }
524
+ interface staticDateRanges {
525
+ label: string;
526
+ range: any;
527
+ isSelected: any;
528
+ }
529
+ export interface DateRange {
530
+ startDate: Date;
531
+ endDate: Date;
532
+ }
533
+ export interface MultiDateRangePickerProps {
534
+ minDate?: Date;
535
+ maxDate?: Date;
536
+ dateFormat?: string;
537
+ disabledDates?: Date[];
538
+ disabledDay?: (date: Date) => boolean;
539
+ staticDateRanges?: staticDateRanges[];
540
+ selectedDate: DateRange;
541
+ onChange: (date: DateRange) => void;
542
+ showFooterActions?: boolean;
543
+ onApply?: (date: DateRange) => void;
544
+ onCancel?: (date: DateRange) => void;
545
+ }
524
546
  export {};
package/package.json CHANGED
@@ -9,7 +9,7 @@
9
9
  "frontend",
10
10
  "healthplix"
11
11
  ],
12
- "version": "1.1.67",
12
+ "version": "1.1.68",
13
13
  "main": "dist/esm/index.js",
14
14
  "module": "dist/esm/index.js",
15
15
  "types": "dist/esm/index.d.ts",