dfh-ui-library 1.12.209 → 1.12.210

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.
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ import { TimelineEventProps } from "../../shared/models/components/common.model";
3
+ declare const NoteEvent: React.FC<TimelineEventProps>;
4
+ export default NoteEvent;
@@ -0,0 +1,7 @@
1
+ import React from "react";
2
+ import { NoteItemProps } from "../../shared/models/components/common.model";
3
+ interface NoteViewProps {
4
+ notes?: NoteItemProps[];
5
+ }
6
+ declare const NotesEventView: React.FC<NoteViewProps>;
7
+ export default NotesEventView;
@@ -5,6 +5,8 @@ export interface ITodoToggleRequestParams {
5
5
  toggleOptions: {
6
6
  noteIndex: number;
7
7
  check: boolean;
8
+ toggledInUpdates?: boolean;
9
+ toggledInPatientList?: boolean;
8
10
  };
9
11
  }
10
12
  interface todosProps {
@@ -12,7 +14,7 @@ interface todosProps {
12
14
  listMasterData?: ListMasterDataProps;
13
15
  detailAction?: (rowId: string | undefined) => void;
14
16
  handleNameClick?: (id?: string) => void;
15
- toggleDashboardTodoCheckbox?: (req: ITodoToggleRequestParams) => void;
17
+ toggleTodoCheckbox?: (req: ITodoToggleRequestParams) => void;
16
18
  }
17
19
  declare const Todos: React.FC<todosProps>;
18
20
  export default Todos;
@@ -687,7 +687,7 @@ export interface SideBarListProps {
687
687
  detailAction?: (value: string | undefined) => void;
688
688
  handleNameClick?: (id?: string) => void;
689
689
  handleChallengeHeaderClick?: (patientId?: string, challengeId?: string) => void;
690
- toggleDashboardTodoCheckbox?: (req: ITodoToggleRequestParams) => void;
690
+ toggleTodoCheckbox?: (req: ITodoToggleRequestParams) => void;
691
691
  }
692
692
  export interface UrgentDataProps {
693
693
  fullName?: string | undefined;
package/dist/index.d.ts CHANGED
@@ -9,6 +9,8 @@ interface ITodoToggleRequestParams {
9
9
  toggleOptions: {
10
10
  noteIndex: number;
11
11
  check: boolean;
12
+ toggledInUpdates?: boolean;
13
+ toggledInPatientList?: boolean;
12
14
  };
13
15
  }
14
16
  interface todosProps {
@@ -16,7 +18,7 @@ interface todosProps {
16
18
  listMasterData?: ListMasterDataProps;
17
19
  detailAction?: (rowId: string | undefined) => void;
18
20
  handleNameClick?: (id?: string) => void;
19
- toggleDashboardTodoCheckbox?: (req: ITodoToggleRequestParams) => void;
21
+ toggleTodoCheckbox?: (req: ITodoToggleRequestParams) => void;
20
22
  }
21
23
  declare const Todos: React__default.FC<todosProps>;
22
24
 
@@ -576,7 +578,7 @@ interface SideBarListProps {
576
578
  detailAction?: (value: string | undefined) => void;
577
579
  handleNameClick?: (id?: string) => void;
578
580
  handleChallengeHeaderClick?: (patientId?: string, challengeId?: string) => void;
579
- toggleDashboardTodoCheckbox?: (req: ITodoToggleRequestParams) => void;
581
+ toggleTodoCheckbox?: (req: ITodoToggleRequestParams) => void;
580
582
  }
581
583
  interface UrgentDataProps {
582
584
  fullName?: string | undefined;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dfh-ui-library",
3
- "version": "1.12.209",
3
+ "version": "1.12.210",
4
4
  "description": "",
5
5
  "scripts": {
6
6
  "build": "rollup -c --bundleConfigAsCjs --environment NODE_ENV:production",