dfh-ui-library 1.12.614 → 1.12.616
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.js +1 -1
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/components/Timeline/NoteView.d.ts +2 -1
- package/dist/cjs/types/components/Tooltip/TooltipWithChildren.d.ts +0 -1
- package/dist/cjs/types/shared/models/components/base.model.d.ts +0 -1
- package/dist/cjs/types/shared/models/components/common.model.d.ts +0 -1
- package/dist/esm/index.js +1 -1
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/components/Timeline/NoteView.d.ts +2 -1
- package/dist/esm/types/components/Tooltip/TooltipWithChildren.d.ts +0 -1
- package/dist/esm/types/shared/models/components/base.model.d.ts +0 -1
- package/dist/esm/types/shared/models/components/common.model.d.ts +0 -1
- package/dist/index.d.ts +0 -3
- package/package.json +2 -2
@@ -1,11 +1,12 @@
|
|
1
1
|
import React from "react";
|
2
|
-
import { NoteItemProps } from "../../shared/models/components/common.model";
|
2
|
+
import { NoteItemProps, UrgentDataProps } from "../../shared/models/components/common.model";
|
3
3
|
import { ITodoToggleRequestParams } from "../SideBarListView/todos";
|
4
4
|
interface NoteViewProps {
|
5
5
|
notes?: NoteItemProps[];
|
6
6
|
addtionalClassesCheckboxLabel?: string;
|
7
7
|
handleCheckboxToggle?: (req: ITodoToggleRequestParams) => void;
|
8
8
|
isNoteHistory?: boolean;
|
9
|
+
option?: UrgentDataProps;
|
9
10
|
}
|
10
11
|
declare const NotesView: React.FC<NoteViewProps>;
|
11
12
|
export default NotesView;
|
@@ -2,7 +2,6 @@ import React from "react";
|
|
2
2
|
import { TooltipProps } from "../../shared/models/components/base.model";
|
3
3
|
interface ExtendedTooltipProps extends TooltipProps {
|
4
4
|
fromRightToLeft?: boolean;
|
5
|
-
setShowToolTip?: (showToolTip: boolean) => void;
|
6
5
|
}
|
7
6
|
declare const TooltipWithChildren: React.FC<ExtendedTooltipProps>;
|
8
7
|
export default TooltipWithChildren;
|