dfh-ui-library 1.12.614 → 1.12.616

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,11 +1,12 @@
1
1
  import React from "react";
2
- import { NoteItemProps } from "../../shared/models/components/common.model";
2
+ import { NoteItemProps, UrgentDataProps } from "../../shared/models/components/common.model";
3
3
  import { ITodoToggleRequestParams } from "../SideBarListView/todos";
4
4
  interface NoteViewProps {
5
5
  notes?: NoteItemProps[];
6
6
  addtionalClassesCheckboxLabel?: string;
7
7
  handleCheckboxToggle?: (req: ITodoToggleRequestParams) => void;
8
8
  isNoteHistory?: boolean;
9
+ option?: UrgentDataProps;
9
10
  }
10
11
  declare const NotesView: React.FC<NoteViewProps>;
11
12
  export default NotesView;
@@ -2,7 +2,6 @@ import React from "react";
2
2
  import { TooltipProps } from "../../shared/models/components/base.model";
3
3
  interface ExtendedTooltipProps extends TooltipProps {
4
4
  fromRightToLeft?: boolean;
5
- setShowToolTip?: (showToolTip: boolean) => void;
6
5
  }
7
6
  declare const TooltipWithChildren: React.FC<ExtendedTooltipProps>;
8
7
  export default TooltipWithChildren;
@@ -578,7 +578,6 @@ export interface TooltipProps {
578
578
  showTooltip?: boolean;
579
579
  fromBottom?: boolean;
580
580
  children?: ReactNode;
581
- setShowToolTip?: (showToolTip: boolean) => void;
582
581
  }
583
582
  export type Patient = {
584
583
  firstName: string;
@@ -626,7 +626,6 @@ export interface FormGenButtonGroupProps extends FormGenInputGroupProps {
626
626
  lastEditedDate?: string;
627
627
  };
628
628
  tooltip?: string;
629
- setShowToolTip?: (showToolTip: boolean) => void;
630
629
  }
631
630
  export interface selectedValue {
632
631
  value?: any;