dfh-ui-library 1.12.165 → 1.12.167
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/types/components/SideBarListView/todos.d.ts +1 -1
- package/dist/cjs/types/components/Timeline/NoteView.d.ts +1 -1
- package/dist/esm/types/components/SideBarListView/todos.d.ts +1 -1
- package/dist/esm/types/components/Timeline/NoteView.d.ts +1 -1
- package/dist/index.d.ts +1 -1
- package/package.json +1 -1
|
@@ -12,7 +12,7 @@ interface todosProps {
|
|
|
12
12
|
listMasterData?: ListMasterDataProps;
|
|
13
13
|
detailAction?: (rowId: string | undefined) => void;
|
|
14
14
|
handleNameClick?: (id?: string) => void;
|
|
15
|
-
toggleDashboardTodoCheckbox?: (req: ITodoToggleRequestParams) =>
|
|
15
|
+
toggleDashboardTodoCheckbox?: (req: ITodoToggleRequestParams) => void;
|
|
16
16
|
}
|
|
17
17
|
declare const Todos: React.FC<todosProps>;
|
|
18
18
|
export default Todos;
|
|
@@ -4,7 +4,7 @@ import { ITodoToggleRequestParams } from "../SideBarListView/todos";
|
|
|
4
4
|
interface NoteViewProps {
|
|
5
5
|
notes?: NoteItemProps[];
|
|
6
6
|
addtionalClassesCheckboxLabel?: string;
|
|
7
|
-
toggleDashboardTodoCheckbox?: (req: ITodoToggleRequestParams) =>
|
|
7
|
+
toggleDashboardTodoCheckbox?: (req: ITodoToggleRequestParams) => void;
|
|
8
8
|
}
|
|
9
9
|
declare const NotesView: React.FC<NoteViewProps>;
|
|
10
10
|
export default NotesView;
|
|
@@ -12,7 +12,7 @@ interface todosProps {
|
|
|
12
12
|
listMasterData?: ListMasterDataProps;
|
|
13
13
|
detailAction?: (rowId: string | undefined) => void;
|
|
14
14
|
handleNameClick?: (id?: string) => void;
|
|
15
|
-
toggleDashboardTodoCheckbox?: (req: ITodoToggleRequestParams) =>
|
|
15
|
+
toggleDashboardTodoCheckbox?: (req: ITodoToggleRequestParams) => void;
|
|
16
16
|
}
|
|
17
17
|
declare const Todos: React.FC<todosProps>;
|
|
18
18
|
export default Todos;
|
|
@@ -4,7 +4,7 @@ import { ITodoToggleRequestParams } from "../SideBarListView/todos";
|
|
|
4
4
|
interface NoteViewProps {
|
|
5
5
|
notes?: NoteItemProps[];
|
|
6
6
|
addtionalClassesCheckboxLabel?: string;
|
|
7
|
-
toggleDashboardTodoCheckbox?: (req: ITodoToggleRequestParams) =>
|
|
7
|
+
toggleDashboardTodoCheckbox?: (req: ITodoToggleRequestParams) => void;
|
|
8
8
|
}
|
|
9
9
|
declare const NotesView: React.FC<NoteViewProps>;
|
|
10
10
|
export default NotesView;
|
package/dist/index.d.ts
CHANGED
|
@@ -1456,7 +1456,7 @@ interface todosProps {
|
|
|
1456
1456
|
listMasterData?: ListMasterDataProps;
|
|
1457
1457
|
detailAction?: (rowId: string | undefined) => void;
|
|
1458
1458
|
handleNameClick?: (id?: string) => void;
|
|
1459
|
-
toggleDashboardTodoCheckbox?: (req: ITodoToggleRequestParams) =>
|
|
1459
|
+
toggleDashboardTodoCheckbox?: (req: ITodoToggleRequestParams) => void;
|
|
1460
1460
|
}
|
|
1461
1461
|
declare const Todos: React__default.FC<todosProps>;
|
|
1462
1462
|
|