dfh-ui-library 1.12.267 → 1.12.269

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,7 @@ export interface ITodoToggleRequestParams {
5
5
  toggleOptions: {
6
6
  noteIndex: number;
7
7
  check: boolean;
8
+ toggledInUpdates?: boolean;
8
9
  };
9
10
  }
10
11
  interface todosProps {
@@ -12,7 +13,7 @@ interface todosProps {
12
13
  listMasterData?: ListMasterDataProps;
13
14
  detailAction?: (rowId: string | undefined) => void;
14
15
  handleNameClick?: (id?: string) => void;
15
- toggleDashboardTodoCheckbox?: (req: ITodoToggleRequestParams) => void;
16
+ toggleTodoCheckbox?: (req: ITodoToggleRequestParams) => void;
16
17
  }
17
18
  declare const Todos: React.FC<todosProps>;
18
19
  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;
@@ -756,7 +756,7 @@ export interface NoteHistoryProps {
756
756
  notesHistory?: NoteHistoryDetails[];
757
757
  type?: string;
758
758
  challenge?: string;
759
- solutions?: string | SolutionItem[];
759
+ solutions?: string;
760
760
  challengeResolved?: boolean;
761
761
  }
762
762
  export interface NoteHistoryDetails {
package/dist/index.d.ts CHANGED
@@ -9,6 +9,7 @@ interface ITodoToggleRequestParams {
9
9
  toggleOptions: {
10
10
  noteIndex: number;
11
11
  check: boolean;
12
+ toggledInUpdates?: boolean;
12
13
  };
13
14
  }
14
15
  interface todosProps {
@@ -16,7 +17,7 @@ interface todosProps {
16
17
  listMasterData?: ListMasterDataProps;
17
18
  detailAction?: (rowId: string | undefined) => void;
18
19
  handleNameClick?: (id?: string) => void;
19
- toggleDashboardTodoCheckbox?: (req: ITodoToggleRequestParams) => void;
20
+ toggleTodoCheckbox?: (req: ITodoToggleRequestParams) => void;
20
21
  }
21
22
  declare const Todos: React__default.FC<todosProps>;
22
23
 
@@ -576,7 +577,7 @@ interface SideBarListProps {
576
577
  detailAction?: (value: string | undefined) => void;
577
578
  handleNameClick?: (id?: string) => void;
578
579
  handleChallengeHeaderClick?: (patientId?: string, challengeId?: string) => void;
579
- toggleDashboardTodoCheckbox?: (req: ITodoToggleRequestParams) => void;
580
+ toggleTodoCheckbox?: (req: ITodoToggleRequestParams) => void;
580
581
  }
581
582
  interface UrgentDataProps {
582
583
  fullName?: string | undefined;
@@ -645,7 +646,7 @@ interface NoteHistoryProps {
645
646
  notesHistory?: NoteHistoryDetails[];
646
647
  type?: string;
647
648
  challenge?: string;
648
- solutions?: string | SolutionItem[];
649
+ solutions?: string;
649
650
  challengeResolved?: boolean;
650
651
  }
651
652
  interface NoteHistoryDetails {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dfh-ui-library",
3
- "version": "1.12.267",
3
+ "version": "1.12.269",
4
4
  "description": "",
5
5
  "scripts": {
6
6
  "build": "rollup -c --bundleConfigAsCjs --environment NODE_ENV:production",