dfh-ui-library 1.12.380 → 1.12.381

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.
@@ -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;
@@ -1,7 +1,6 @@
1
1
  import React from "react";
2
2
  import { ISolutionvalues, NoteProps, TimelineEventProps } from "../../shared/models/components/common.model";
3
- import { ITodoToggleRequestParams } from "../SideBarListView/todos";
4
- export declare const getTimeLineCards: (eventData: TimelineEventProps, setShowCompleteNote: (isShow: boolean) => void, showCompleteNote: boolean, handleEditItemTimeLine: any, navigateAction?: (timeLineNavReq?: ISolutionvalues, type?: string) => void, surveyId?: string, showNote?: boolean, setShowNote?: (isSet: boolean) => void, enableEdit?: boolean, toggleEdit?: (isShow: boolean) => void, viewNoteHistory?: any, lastModified?: string, saveNoteValues?: any, setEnableEdit?: (isEnable: boolean) => void, surveyDate?: string, type?: string[], showAll?: boolean, handleCheckboxToggle?: (req: ITodoToggleRequestParams) => void) => React.JSX.Element;
3
+ export declare const getTimeLineCards: (eventData: TimelineEventProps, setShowCompleteNote: (isShow: boolean) => void, showCompleteNote: boolean, handleEditItemTimeLine: any, navigateAction?: (timeLineNavReq?: ISolutionvalues, type?: string) => void, surveyId?: string, showNote?: boolean, setShowNote?: (isSet: boolean) => void, enableEdit?: boolean, toggleEdit?: (isShow: boolean) => void, viewNoteHistory?: any, lastModified?: string, saveNoteValues?: any, setEnableEdit?: (isEnable: boolean) => void, surveyDate?: string, type?: string[], showAll?: boolean) => React.JSX.Element;
5
4
  export declare const NoteCard: React.FC<{
6
5
  eventData?: TimelineEventProps;
7
6
  note?: NoteProps;
@@ -15,5 +14,4 @@ export declare const NoteCard: React.FC<{
15
14
  setEnableEdit?: (isEnable: boolean) => void;
16
15
  type?: string[];
17
16
  showAll?: boolean;
18
- handleCheckboxToggle?: (req: ITodoToggleRequestParams) => void;
19
17
  }>;
@@ -672,7 +672,6 @@ export interface TimelineProps {
672
672
  viewNoteHistory?: (isShow: boolean, noteId: string, eventData?: any) => void;
673
673
  navigationAction?: (solution?: ISolutionvalues, type?: string) => void;
674
674
  type?: string[];
675
- handleCheckboxToggle?: (req: ITodoToggleRequestParams) => void;
676
675
  }
677
676
  export interface SideBarListProps {
678
677
  filterLeftLabel?: string;
@@ -730,7 +729,6 @@ export interface TimelineEventProps {
730
729
  actionedUser?: string;
731
730
  surveyDate?: string;
732
731
  navigateAction?: (timeLineNavReq?: ISolutionvalues, type?: string) => void;
733
- handleCheckboxToggle?: (req: ITodoToggleRequestParams) => void;
734
732
  }
735
733
  export interface IVariant {
736
734
  pdfMetaData?: PDFMeta;
package/dist/index.d.ts CHANGED
@@ -562,7 +562,6 @@ interface TimelineProps {
562
562
  viewNoteHistory?: (isShow: boolean, noteId: string, eventData?: any) => void;
563
563
  navigationAction?: (solution?: ISolutionvalues, type?: string) => void;
564
564
  type?: string[];
565
- handleCheckboxToggle?: (req: ITodoToggleRequestParams) => void;
566
565
  }
567
566
  interface SideBarListProps {
568
567
  filterLeftLabel?: string;
@@ -620,7 +619,6 @@ interface TimelineEventProps {
620
619
  actionedUser?: string;
621
620
  surveyDate?: string;
622
621
  navigateAction?: (timeLineNavReq?: ISolutionvalues, type?: string) => void;
623
- handleCheckboxToggle?: (req: ITodoToggleRequestParams) => void;
624
622
  }
625
623
  interface IVariant {
626
624
  pdfMetaData?: PDFMeta;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dfh-ui-library",
3
- "version": "1.12.380",
3
+ "version": "1.12.381",
4
4
  "description": "",
5
5
  "scripts": {
6
6
  "build": "rollup -c --bundleConfigAsCjs --environment NODE_ENV:production",