dfh-ui-library 1.12.439 → 1.12.441

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