dfh-ui-library 1.12.183 → 1.12.185
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.
- package/dist/cjs/index.css +1 -1
- package/dist/cjs/index.css.map +1 -1
- package/dist/cjs/index.js +1 -1
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/components/FilterButtonGroup/Checkbox.d.ts +3 -1
- package/dist/cjs/types/components/History/NoteEvent.d.ts +4 -0
- package/dist/cjs/types/components/History/NoteEventView.d.ts +7 -0
- package/dist/cjs/types/components/SideBarListView/todos.d.ts +8 -0
- package/dist/cjs/types/components/Timeline/NoteView.d.ts +2 -0
- package/dist/cjs/types/shared/models/components/common.model.d.ts +4 -0
- package/dist/esm/index.css +1 -1
- package/dist/esm/index.css.map +1 -1
- package/dist/esm/index.js +1 -1
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/components/FilterButtonGroup/Checkbox.d.ts +3 -1
- package/dist/esm/types/components/History/NoteEvent.d.ts +4 -0
- package/dist/esm/types/components/History/NoteEventView.d.ts +7 -0
- package/dist/esm/types/components/SideBarListView/todos.d.ts +8 -0
- package/dist/esm/types/components/Timeline/NoteView.d.ts +2 -0
- package/dist/esm/types/shared/models/components/common.model.d.ts +4 -0
- package/dist/index.d.ts +22 -9
- package/package.json +1 -1
|
@@ -2,8 +2,10 @@ import React from "react";
|
|
|
2
2
|
interface CheckboxProps {
|
|
3
3
|
id?: string;
|
|
4
4
|
checked?: boolean;
|
|
5
|
-
onChange: (
|
|
5
|
+
onChange: (event: React.ChangeEvent<HTMLInputElement>) => void;
|
|
6
6
|
addtionalClasses?: string;
|
|
7
|
+
noteId?: string;
|
|
8
|
+
noteIndex?: number;
|
|
7
9
|
}
|
|
8
10
|
declare const CheckBoxComponent: React.FC<CheckboxProps>;
|
|
9
11
|
export default CheckBoxComponent;
|
|
@@ -1,10 +1,18 @@
|
|
|
1
1
|
import React from "react";
|
|
2
2
|
import { ListMasterDataProps, UrgentDataProps } from "../../shared/models/components/common.model";
|
|
3
|
+
export interface ITodoToggleRequestParams {
|
|
4
|
+
noteId?: string;
|
|
5
|
+
toggleOptions: {
|
|
6
|
+
noteIndex: number;
|
|
7
|
+
check: boolean;
|
|
8
|
+
};
|
|
9
|
+
}
|
|
3
10
|
interface todosProps {
|
|
4
11
|
urgentDataList: UrgentDataProps[];
|
|
5
12
|
listMasterData?: ListMasterDataProps;
|
|
6
13
|
detailAction?: (rowId: string | undefined) => void;
|
|
7
14
|
handleNameClick?: (id?: string) => void;
|
|
15
|
+
toggleDashboardTodoCheckbox?: (req: ITodoToggleRequestParams) => void;
|
|
8
16
|
}
|
|
9
17
|
declare const Todos: React.FC<todosProps>;
|
|
10
18
|
export default Todos;
|
|
@@ -1,8 +1,10 @@
|
|
|
1
1
|
import React from "react";
|
|
2
2
|
import { NoteItemProps } from "../../shared/models/components/common.model";
|
|
3
|
+
import { ITodoToggleRequestParams } from "../SideBarListView/todos";
|
|
3
4
|
interface NoteViewProps {
|
|
4
5
|
notes?: NoteItemProps[];
|
|
5
6
|
addtionalClassesCheckboxLabel?: string;
|
|
7
|
+
handleCheckboxToggle?: (req: ITodoToggleRequestParams) => void;
|
|
6
8
|
}
|
|
7
9
|
declare const NotesView: React.FC<NoteViewProps>;
|
|
8
10
|
export default NotesView;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { ReactNode } from "react";
|
|
2
2
|
import { VariantTypes } from "./base.model";
|
|
3
3
|
import { ColumnDef, OnChangeFn, PaginationState, SortingState } from "@tanstack/react-table";
|
|
4
|
+
import { ITodoToggleRequestParams } from "../../../components/SideBarListView/todos";
|
|
4
5
|
export type AlignmentType = "center" | "left" | "right";
|
|
5
6
|
export type IconColorTypes = "white" | "black-900" | "gray-220" | "gray-720" | "inherit" | "gray-300" | string;
|
|
6
7
|
export type IconHoverColorTypes = "white" | "black-900" | "gray-220" | "inherit";
|
|
@@ -686,6 +687,7 @@ export interface SideBarListProps {
|
|
|
686
687
|
detailAction?: (value: string | undefined) => void;
|
|
687
688
|
handleNameClick?: (id?: string) => void;
|
|
688
689
|
handleChallengeHeaderClick?: (patientId?: string, challengeId?: string) => void;
|
|
690
|
+
toggleDashboardTodoCheckbox?: (req: ITodoToggleRequestParams) => void;
|
|
689
691
|
}
|
|
690
692
|
export interface UrgentDataProps {
|
|
691
693
|
fullName?: string | undefined;
|
|
@@ -770,10 +772,12 @@ export interface NoteOptionsProps {
|
|
|
770
772
|
checked?: boolean;
|
|
771
773
|
}
|
|
772
774
|
export interface NoteItemProps {
|
|
775
|
+
noteId?: string;
|
|
773
776
|
isChecked?: boolean;
|
|
774
777
|
text?: string | undefined;
|
|
775
778
|
enableCheckbox?: boolean;
|
|
776
779
|
additonalInfo?: any;
|
|
780
|
+
noteIndex?: number;
|
|
777
781
|
}
|
|
778
782
|
export interface NoteComponentProps {
|
|
779
783
|
onAdd?: (items: NoteProps, serveyId?: string) => void;
|
package/dist/index.d.ts
CHANGED
|
@@ -4,6 +4,22 @@ import React__default, { InputHTMLAttributes, SelectHTMLAttributes, TextareaHTML
|
|
|
4
4
|
import { ColumnDef, OnChangeFn, SortingState, PaginationState } from '@tanstack/react-table';
|
|
5
5
|
export { ColumnDef, SortingState } from '@tanstack/react-table';
|
|
6
6
|
|
|
7
|
+
interface ITodoToggleRequestParams {
|
|
8
|
+
noteId?: string;
|
|
9
|
+
toggleOptions: {
|
|
10
|
+
noteIndex: number;
|
|
11
|
+
check: boolean;
|
|
12
|
+
};
|
|
13
|
+
}
|
|
14
|
+
interface todosProps {
|
|
15
|
+
urgentDataList: UrgentDataProps[];
|
|
16
|
+
listMasterData?: ListMasterDataProps;
|
|
17
|
+
detailAction?: (rowId: string | undefined) => void;
|
|
18
|
+
handleNameClick?: (id?: string) => void;
|
|
19
|
+
toggleDashboardTodoCheckbox?: (req: ITodoToggleRequestParams) => void;
|
|
20
|
+
}
|
|
21
|
+
declare const Todos: React__default.FC<todosProps>;
|
|
22
|
+
|
|
7
23
|
type AlignmentType = "center" | "left" | "right";
|
|
8
24
|
type IconColorTypes = "white" | "black-900" | "gray-220" | "gray-720" | "inherit" | "gray-300" | string;
|
|
9
25
|
type IconHoverColorTypes = "white" | "black-900" | "gray-220" | "inherit";
|
|
@@ -560,6 +576,7 @@ interface SideBarListProps {
|
|
|
560
576
|
detailAction?: (value: string | undefined) => void;
|
|
561
577
|
handleNameClick?: (id?: string) => void;
|
|
562
578
|
handleChallengeHeaderClick?: (patientId?: string, challengeId?: string) => void;
|
|
579
|
+
toggleDashboardTodoCheckbox?: (req: ITodoToggleRequestParams) => void;
|
|
563
580
|
}
|
|
564
581
|
interface UrgentDataProps {
|
|
565
582
|
fullName?: string | undefined;
|
|
@@ -640,10 +657,12 @@ interface UserHistoryDetails {
|
|
|
640
657
|
fullName: string;
|
|
641
658
|
}
|
|
642
659
|
interface NoteItemProps {
|
|
660
|
+
noteId?: string;
|
|
643
661
|
isChecked?: boolean;
|
|
644
662
|
text?: string | undefined;
|
|
645
663
|
enableCheckbox?: boolean;
|
|
646
664
|
additonalInfo?: any;
|
|
665
|
+
noteIndex?: number;
|
|
647
666
|
}
|
|
648
667
|
interface NoteComponentProps {
|
|
649
668
|
onAdd?: (items: NoteProps, serveyId?: string) => void;
|
|
@@ -1437,19 +1456,13 @@ declare const ButtonGroupMultiSelect: React__default.FC<ButtonGroupMultiProps>;
|
|
|
1437
1456
|
interface CheckboxProps {
|
|
1438
1457
|
id?: string;
|
|
1439
1458
|
checked?: boolean;
|
|
1440
|
-
onChange: (
|
|
1459
|
+
onChange: (event: React__default.ChangeEvent<HTMLInputElement>) => void;
|
|
1441
1460
|
addtionalClasses?: string;
|
|
1461
|
+
noteId?: string;
|
|
1462
|
+
noteIndex?: number;
|
|
1442
1463
|
}
|
|
1443
1464
|
declare const CheckBoxComponent: React__default.FC<CheckboxProps>;
|
|
1444
1465
|
|
|
1445
|
-
interface todosProps {
|
|
1446
|
-
urgentDataList: UrgentDataProps[];
|
|
1447
|
-
listMasterData?: ListMasterDataProps;
|
|
1448
|
-
detailAction?: (rowId: string | undefined) => void;
|
|
1449
|
-
handleNameClick?: (id?: string) => void;
|
|
1450
|
-
}
|
|
1451
|
-
declare const Todos: React__default.FC<todosProps>;
|
|
1452
|
-
|
|
1453
1466
|
interface UrgentChallengeProps {
|
|
1454
1467
|
urgentDataList: UrgentDataProps[];
|
|
1455
1468
|
listMasterData?: ListMasterDataProps;
|