dfh-ui-library 1.12.1 → 1.12.2
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.js +1 -1
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/shared/models/components/common.model.d.ts +4 -3
- 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 +4 -3
- package/dist/index.d.ts +4 -3
- package/package.json +1 -1
|
@@ -720,9 +720,10 @@ export interface TimelineEventProps {
|
|
|
720
720
|
export interface IVariant {
|
|
721
721
|
pdfMetaData?: PDFMeta;
|
|
722
722
|
referralData?: ReferralMeta;
|
|
723
|
+
solutionVariantName?: string;
|
|
723
724
|
}
|
|
724
725
|
export interface PDFMeta {
|
|
725
|
-
resourceLink
|
|
726
|
+
resourceLink?: string;
|
|
726
727
|
}
|
|
727
728
|
export interface ReferralMeta {
|
|
728
729
|
email: string;
|
|
@@ -800,8 +801,8 @@ export interface SignatureProps {
|
|
|
800
801
|
}
|
|
801
802
|
export interface SolutionItem {
|
|
802
803
|
solution: ISolutionvalues;
|
|
803
|
-
_id
|
|
804
|
-
createdDate
|
|
804
|
+
_id?: string;
|
|
805
|
+
createdDate?: string;
|
|
805
806
|
note?: NoteProps;
|
|
806
807
|
variant?: IVariant;
|
|
807
808
|
}
|