@quicktalog/common 1.38.0 → 1.40.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/constants/general.js +16 -14
- package/dist/types/catalogue.d.ts +2 -0
- package/package.json +1 -1
|
@@ -1,18 +1,20 @@
|
|
|
1
1
|
export const themes = [
|
|
2
|
-
{
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
2
|
+
// {
|
|
3
|
+
// id: 1,
|
|
4
|
+
// key: "theme-advent-1",
|
|
5
|
+
// label: "Advent 1",
|
|
6
|
+
// description:
|
|
7
|
+
// "A warm and festive theme inspired by the spirit of anticipation and celebration. Advent combines cozy winter tones, gentle contrasts, and elegant typography to evoke a sense of calm preparation and joyful expectation. Ideal for holiday campaigns, seasonal landing pages, or storytelling experiences that blend warmth, tradition, and modern simplicity.",
|
|
8
|
+
// type: "light",
|
|
9
|
+
// },
|
|
10
|
+
// {
|
|
11
|
+
// id: 2,
|
|
12
|
+
// key: "theme-advent-2",
|
|
13
|
+
// label: "Advent 2",
|
|
14
|
+
// description:
|
|
15
|
+
// "A warm and festive theme inspired by the spirit of anticipation and celebration. Advent combines cozy winter tones, gentle contrasts, and elegant typography to evoke a sense of calm preparation and joyful expectation. Ideal for holiday campaigns, seasonal landing pages, or storytelling experiences that blend warmth, tradition, and modern simplicity.",
|
|
16
|
+
// type: "light",
|
|
17
|
+
// },
|
|
16
18
|
{
|
|
17
19
|
id: 3,
|
|
18
20
|
key: "theme-monochrome",
|
|
@@ -110,6 +110,7 @@ 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;
|
|
@@ -119,6 +120,7 @@ export type Footer = {
|
|
|
119
120
|
};
|
|
120
121
|
};
|
|
121
122
|
export type Header = {
|
|
123
|
+
type: "default" | "custom";
|
|
122
124
|
cta: CTAButton;
|
|
123
125
|
emailCta: boolean;
|
|
124
126
|
phoneCta: boolean;
|