dfh-ui-library 1.12.312 → 1.12.314
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.css +1 -1
- package/dist/cjs/index.css.map +1 -1
- package/dist/cjs/index.js +1 -1
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/shared/models/components/common.model.d.ts +1 -1
- package/dist/esm/index.css +1 -1
- package/dist/esm/index.css.map +1 -1
- package/dist/esm/index.js +1 -1
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/shared/models/components/common.model.d.ts +1 -1
- package/dist/index.d.ts +1 -1
- package/package.json +1 -1
- package/dist/cjs/types/components/History/NoteEvent.d.ts +0 -4
- package/dist/cjs/types/components/History/NoteEventView.d.ts +0 -7
- package/dist/esm/types/components/History/NoteEvent.d.ts +0 -4
- package/dist/esm/types/components/History/NoteEventView.d.ts +0 -7
|
@@ -748,6 +748,7 @@ export interface NoteProps {
|
|
|
748
748
|
date?: string;
|
|
749
749
|
actionedUser?: string;
|
|
750
750
|
noteType?: string;
|
|
751
|
+
shouldUpdateLastContactDate?: boolean;
|
|
751
752
|
}
|
|
752
753
|
export interface NoteHistoryProps {
|
|
753
754
|
editedBy?: string;
|
|
@@ -848,6 +849,5 @@ export interface TableProps {
|
|
|
848
849
|
rowClick?: (row: any) => void;
|
|
849
850
|
setRowSelection?: any;
|
|
850
851
|
isLoading?: boolean;
|
|
851
|
-
setPageIndex?: any;
|
|
852
852
|
}
|
|
853
853
|
export {};
|
package/dist/index.d.ts
CHANGED
|
@@ -638,6 +638,7 @@ interface NoteProps {
|
|
|
638
638
|
date?: string;
|
|
639
639
|
actionedUser?: string;
|
|
640
640
|
noteType?: string;
|
|
641
|
+
shouldUpdateLastContactDate?: boolean;
|
|
641
642
|
}
|
|
642
643
|
interface NoteHistoryProps {
|
|
643
644
|
editedBy?: string;
|
|
@@ -734,7 +735,6 @@ interface TableProps {
|
|
|
734
735
|
rowClick?: (row: any) => void;
|
|
735
736
|
setRowSelection?: any;
|
|
736
737
|
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