dfh-ui-library 1.12.453 → 1.12.455

Sign up to get free protection for your applications and to get access to all the features.
@@ -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;
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ import { CustomDatePickerProps } from '../../shared/models/components/common.model';
3
+ declare const MonthPicker: React.FC<CustomDatePickerProps>;
4
+ export default MonthPicker;
@@ -0,0 +1 @@
1
+ export { default } from "./MonthPicker";
@@ -2,6 +2,8 @@ import React from "react";
2
2
  import { ListMasterDataProps, UrgentDataProps } from "../../shared/models/components/common.model";
3
3
  export interface ITodoToggleRequestParams {
4
4
  noteId?: string;
5
+ actionedUser?: string;
6
+ patient?: string;
5
7
  toggleOptions: {
6
8
  noteIndex: number;
7
9
  check: boolean;
package/dist/index.d.ts CHANGED
@@ -6,6 +6,8 @@ export { ColumnDef, SortingState } from '@tanstack/react-table';
6
6
 
7
7
  interface ITodoToggleRequestParams {
8
8
  noteId?: string;
9
+ actionedUser?: string;
10
+ patient?: string;
9
11
  toggleOptions: {
10
12
  noteIndex: number;
11
13
  check: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dfh-ui-library",
3
- "version": "1.12.453",
3
+ "version": "1.12.455",
4
4
  "description": "",
5
5
  "scripts": {
6
6
  "build": "rollup -c --bundleConfigAsCjs --environment NODE_ENV:production",