dfh-ui-library 1.12.314 → 1.12.315

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;
@@ -748,7 +748,6 @@ export interface NoteProps {
748
748
  date?: string;
749
749
  actionedUser?: string;
750
750
  noteType?: string;
751
- shouldUpdateLastContactDate?: boolean;
752
751
  }
753
752
  export interface NoteHistoryProps {
754
753
  editedBy?: string;
@@ -849,5 +848,6 @@ export interface TableProps {
849
848
  rowClick?: (row: any) => void;
850
849
  setRowSelection?: any;
851
850
  isLoading?: boolean;
851
+ setPageIndex?: any;
852
852
  }
853
853
  export {};
package/dist/index.d.ts CHANGED
@@ -638,7 +638,6 @@ interface NoteProps {
638
638
  date?: string;
639
639
  actionedUser?: string;
640
640
  noteType?: string;
641
- shouldUpdateLastContactDate?: boolean;
642
641
  }
643
642
  interface NoteHistoryProps {
644
643
  editedBy?: string;
@@ -735,6 +734,7 @@ interface TableProps {
735
734
  rowClick?: (row: any) => void;
736
735
  setRowSelection?: any;
737
736
  isLoading?: boolean;
737
+ setPageIndex?: any;
738
738
  }
739
739
 
740
740
  type VariantTypes = "large" | "small" | "extraSmall" | "largeOutlined" | "smallOutlined" | "extraSmallOutlined" | "default" | "defaultOutlined" | "primaryBlue" | "primaryWhite" | "primaryWhiteSelected" | "primaryWhiteNoBoader" | "primaryWhiteIcon" | "primaryRed" | "primaryFilterSelected" | "primaryBlueFilter" | "smallWhite" | "smallWhiteSelected" | "smallBlue" | "primaryNoBoader" | "primaryBlue10" | "noBoaderbgTransparent" | undefined;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dfh-ui-library",
3
- "version": "1.12.314",
3
+ "version": "1.12.315",
4
4
  "description": "",
5
5
  "scripts": {
6
6
  "build": "rollup -c --bundleConfigAsCjs --environment NODE_ENV:production",