@quicktalog/common 1.37.0 → 1.39.0
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/types/catalogue.d.ts +10 -0
- package/package.json +1 -1
|
@@ -110,14 +110,24 @@ export type Partner = {
|
|
|
110
110
|
description: string;
|
|
111
111
|
};
|
|
112
112
|
export type Footer = {
|
|
113
|
+
type: "default" | "custom";
|
|
113
114
|
cta: CTAButton;
|
|
114
115
|
newsletter: boolean;
|
|
115
116
|
showPartners: boolean;
|
|
117
|
+
logoSize: {
|
|
118
|
+
width: number;
|
|
119
|
+
height: number;
|
|
120
|
+
};
|
|
116
121
|
};
|
|
117
122
|
export type Header = {
|
|
123
|
+
type: "default" | "custom";
|
|
118
124
|
cta: CTAButton;
|
|
119
125
|
emailCta: boolean;
|
|
120
126
|
phoneCta: boolean;
|
|
127
|
+
logoSize: {
|
|
128
|
+
width: number;
|
|
129
|
+
height: number;
|
|
130
|
+
};
|
|
121
131
|
};
|
|
122
132
|
export type Contact = {
|
|
123
133
|
phone: string;
|