dfh-ui-library 1.12.261 → 1.12.263

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