easyorders 0.1.14 → 0.1.15
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/README.md +93 -93
- package/dist/bin/cli.js +12 -5
- package/dist/template/theme/config.json +95 -95
- package/dist/template/theme/home-sections/category-mosaic/config.json +40 -40
- package/dist/template/theme/home-sections/category-mosaic/template.liquid +155 -155
- package/dist/template/theme/home-sections/editorial-feature/config.json +67 -67
- package/dist/template/theme/home-sections/editorial-feature/template.liquid +153 -153
- package/dist/template/theme/home-sections/newsletter-luxe/config.json +60 -60
- package/dist/template/theme/home-sections/newsletter-luxe/template.liquid +144 -144
- package/dist/template/theme/home-sections/runway-hero/config.json +91 -91
- package/dist/template/theme/home-sections/runway-hero/template.liquid +159 -159
- package/dist/template/theme/home-sections/shop-the-look/config.json +75 -75
- package/dist/template/theme/home-sections/shop-the-look/template.liquid +304 -304
- package/dist/template/theme/home-sections/trust-promise/config.json +47 -47
- package/dist/template/theme/home-sections/trust-promise/template.liquid +96 -96
- package/dist/template/theme/schema.json +151 -151
- package/dist/template/theme/script.js +586 -586
- package/dist/template/theme/sections/breadcrumbs.liquid +17 -17
- package/dist/template/theme/sections/categories.liquid +9 -9
- package/dist/template/theme/sections/fake-counter.liquid +27 -27
- package/dist/template/theme/sections/fake-stock.liquid +6 -6
- package/dist/template/theme/sections/fake-visitor.liquid +6 -6
- package/dist/template/theme/sections/featured-products.liquid +110 -110
- package/dist/template/theme/sections/fixed-buy-button.liquid +46 -46
- package/dist/template/theme/sections/footer.liquid +128 -128
- package/dist/template/theme/sections/gallery.liquid +61 -61
- package/dist/template/theme/sections/header.liquid +152 -152
- package/dist/template/theme/sections/home-products-grid.liquid +109 -109
- package/dist/template/theme/sections/list-products.liquid +93 -93
- package/dist/template/theme/sections/order-invoice.liquid +154 -154
- package/dist/template/theme/sections/product-description.liquid +30 -30
- package/dist/template/theme/sections/product-details.liquid +63 -63
- package/dist/template/theme/sections/products-grid.liquid +86 -86
- package/dist/template/theme/sections/related-products.liquid +88 -88
- package/dist/template/theme/sections/reviews.liquid +55 -55
- package/dist/template/theme/sections/slider.liquid +43 -43
- package/dist/template/theme/sections/thanks.liquid +33 -33
- package/dist/template/theme/style.css +3923 -3923
- package/dist/template/theme/theme-data.json +9 -9
- package/package.json +40 -40
|
@@ -1,155 +1,155 @@
|
|
|
1
|
-
<section
|
|
2
|
-
class="category-mosaic eo-hs{% if section_data.gap_tight %} category-mosaic--tight{% endif %}{% if section_data.mosaic_category_ids == blank or section_data.mosaic_category_ids.size == 0 %} eo-hs--empty{% endif %}"
|
|
3
|
-
style="--mosaic-cols: {{ section_data.columns | default: '3' }};"
|
|
4
|
-
data-eo-hs-entity="categories"
|
|
5
|
-
data-eo-hs-ids="{{ section_data.mosaic_category_ids | join: ',' | strip }}"
|
|
6
|
-
>
|
|
7
|
-
<div class="category-mosaic__head">
|
|
8
|
-
{% if section_data.title != blank %}
|
|
9
|
-
<h2 class="category-mosaic__title">{{ section_data.title }}</h2>
|
|
10
|
-
{% endif %}
|
|
11
|
-
{% if section_data.subtitle != blank %}
|
|
12
|
-
<p class="category-mosaic__subtitle">{{ section_data.subtitle }}</p>
|
|
13
|
-
{% endif %}
|
|
14
|
-
</div>
|
|
15
|
-
|
|
16
|
-
<div class="category-mosaic__grid" data-eo-hs-mount>
|
|
17
|
-
{% if section_data.mosaic_category_ids and section_data.mosaic_category_ids.size > 0 %}
|
|
18
|
-
{% for id in section_data.mosaic_category_ids %}
|
|
19
|
-
<div class="eo-hs-skeleton eo-hs-skeleton--category" aria-hidden="true"></div>
|
|
20
|
-
{% endfor %}
|
|
21
|
-
{% else %}
|
|
22
|
-
<p class="category-mosaic__placeholder">Choose categories in the section settings to build this mosaic.</p>
|
|
23
|
-
{% endif %}
|
|
24
|
-
</div>
|
|
25
|
-
</section>
|
|
26
|
-
|
|
27
|
-
<style>
|
|
28
|
-
.category-mosaic {
|
|
29
|
-
padding: clamp(2.5rem, 5vw, 4rem) 1.25rem 3rem;
|
|
30
|
-
background: #fff;
|
|
31
|
-
color: #141218;
|
|
32
|
-
}
|
|
33
|
-
.category-mosaic--tight .category-mosaic__grid {
|
|
34
|
-
gap: 0.75rem;
|
|
35
|
-
}
|
|
36
|
-
.category-mosaic__head {
|
|
37
|
-
max-width: 720px;
|
|
38
|
-
margin: 0 auto 2rem;
|
|
39
|
-
text-align: center;
|
|
40
|
-
}
|
|
41
|
-
.category-mosaic__title {
|
|
42
|
-
margin: 0 0 0.5rem;
|
|
43
|
-
font-family: ui-serif, Georgia, Cambria, 'Times New Roman', Times, serif;
|
|
44
|
-
font-weight: 500;
|
|
45
|
-
font-size: clamp(1.75rem, 4vw, 2.35rem);
|
|
46
|
-
}
|
|
47
|
-
.category-mosaic__subtitle {
|
|
48
|
-
margin: 0;
|
|
49
|
-
font-size: 1rem;
|
|
50
|
-
line-height: 1.6;
|
|
51
|
-
color: #5c5852;
|
|
52
|
-
}
|
|
53
|
-
.category-mosaic__grid {
|
|
54
|
-
max-width: 1200px;
|
|
55
|
-
margin: 0 auto;
|
|
56
|
-
display: grid;
|
|
57
|
-
grid-template-columns: repeat(var(--mosaic-cols, 3), minmax(0, 1fr));
|
|
58
|
-
gap: 1.25rem;
|
|
59
|
-
}
|
|
60
|
-
.category-mosaic__grid.eo-hs-loading {
|
|
61
|
-
opacity: 0.85;
|
|
62
|
-
}
|
|
63
|
-
@media (max-width: 899px) {
|
|
64
|
-
.category-mosaic__grid {
|
|
65
|
-
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
66
|
-
}
|
|
67
|
-
}
|
|
68
|
-
@media (max-width: 520px) {
|
|
69
|
-
.category-mosaic__grid {
|
|
70
|
-
grid-template-columns: 1fr;
|
|
71
|
-
}
|
|
72
|
-
}
|
|
73
|
-
.category-mosaic .eo-hs-skeleton--category {
|
|
74
|
-
aspect-ratio: 3 / 4;
|
|
75
|
-
border-radius: 6px;
|
|
76
|
-
background: linear-gradient(110deg, #ece8e2 8%, #f5f2ee 18%, #ece8e2 33%);
|
|
77
|
-
background-size: 200% 100%;
|
|
78
|
-
animation: category-mosaic-shimmer 1.2s ease-in-out infinite;
|
|
79
|
-
}
|
|
80
|
-
.category-mosaic__placeholder {
|
|
81
|
-
grid-column: 1 / -1;
|
|
82
|
-
margin: 0;
|
|
83
|
-
padding: 1.25rem;
|
|
84
|
-
text-align: center;
|
|
85
|
-
color: #7a7368;
|
|
86
|
-
font-size: 0.9rem;
|
|
87
|
-
}
|
|
88
|
-
.category-mosaic.eo-hs--empty .category-mosaic__grid {
|
|
89
|
-
display: flex;
|
|
90
|
-
justify-content: center;
|
|
91
|
-
}
|
|
92
|
-
.category-mosaic .eo-hs-card--category {
|
|
93
|
-
position: relative;
|
|
94
|
-
display: block;
|
|
95
|
-
text-decoration: none;
|
|
96
|
-
color: inherit;
|
|
97
|
-
border-radius: 6px;
|
|
98
|
-
overflow: hidden;
|
|
99
|
-
background: #ece8e1;
|
|
100
|
-
transition: transform 0.25s ease, box-shadow 0.25s ease;
|
|
101
|
-
}
|
|
102
|
-
.category-mosaic .eo-hs-card--category:hover {
|
|
103
|
-
transform: translateY(-4px);
|
|
104
|
-
box-shadow: 0 22px 50px rgba(20, 18, 24, 0.18);
|
|
105
|
-
}
|
|
106
|
-
.category-mosaic .eo-hs-card--category .eo-hs-card__media {
|
|
107
|
-
display: block;
|
|
108
|
-
aspect-ratio: 3 / 4;
|
|
109
|
-
background: #ece8e2;
|
|
110
|
-
overflow: hidden;
|
|
111
|
-
}
|
|
112
|
-
.category-mosaic .eo-hs-card--category .eo-hs-card__media--empty {
|
|
113
|
-
min-height: 200px;
|
|
114
|
-
}
|
|
115
|
-
.category-mosaic .eo-hs-card--category .eo-hs-card__media img {
|
|
116
|
-
width: 100%;
|
|
117
|
-
height: 100%;
|
|
118
|
-
object-fit: cover;
|
|
119
|
-
display: block;
|
|
120
|
-
transition: transform 0.45s ease;
|
|
121
|
-
}
|
|
122
|
-
.category-mosaic .eo-hs-card--category:hover .eo-hs-card__media img {
|
|
123
|
-
transform: scale(1.04);
|
|
124
|
-
}
|
|
125
|
-
.category-mosaic .eo-hs-card--category .eo-hs-card__body {
|
|
126
|
-
position: absolute;
|
|
127
|
-
left: 0;
|
|
128
|
-
right: 0;
|
|
129
|
-
bottom: 0;
|
|
130
|
-
padding: 1.25rem 1.1rem 1.1rem;
|
|
131
|
-
background: linear-gradient(to top, rgba(12, 10, 14, 0.72), transparent 55%);
|
|
132
|
-
}
|
|
133
|
-
.category-mosaic .eo-hs-card--category .eo-hs-card__title {
|
|
134
|
-
font-size: 1.05rem;
|
|
135
|
-
font-weight: 600;
|
|
136
|
-
letter-spacing: 0.02em;
|
|
137
|
-
color: #fff;
|
|
138
|
-
}
|
|
139
|
-
.category-mosaic .eo-hs-error {
|
|
140
|
-
grid-column: 1 / -1;
|
|
141
|
-
margin: 0;
|
|
142
|
-
padding: 1rem;
|
|
143
|
-
text-align: center;
|
|
144
|
-
font-size: 0.88rem;
|
|
145
|
-
color: #8b3225;
|
|
146
|
-
}
|
|
147
|
-
@keyframes category-mosaic-shimmer {
|
|
148
|
-
0% {
|
|
149
|
-
background-position: 100% 0;
|
|
150
|
-
}
|
|
151
|
-
100% {
|
|
152
|
-
background-position: -100% 0;
|
|
153
|
-
}
|
|
154
|
-
}
|
|
155
|
-
</style>
|
|
1
|
+
<section
|
|
2
|
+
class="category-mosaic eo-hs{% if section_data.gap_tight %} category-mosaic--tight{% endif %}{% if section_data.mosaic_category_ids == blank or section_data.mosaic_category_ids.size == 0 %} eo-hs--empty{% endif %}"
|
|
3
|
+
style="--mosaic-cols: {{ section_data.columns | default: '3' }};"
|
|
4
|
+
data-eo-hs-entity="categories"
|
|
5
|
+
data-eo-hs-ids="{{ section_data.mosaic_category_ids | join: ',' | strip }}"
|
|
6
|
+
>
|
|
7
|
+
<div class="category-mosaic__head">
|
|
8
|
+
{% if section_data.title != blank %}
|
|
9
|
+
<h2 class="category-mosaic__title">{{ section_data.title }}</h2>
|
|
10
|
+
{% endif %}
|
|
11
|
+
{% if section_data.subtitle != blank %}
|
|
12
|
+
<p class="category-mosaic__subtitle">{{ section_data.subtitle }}</p>
|
|
13
|
+
{% endif %}
|
|
14
|
+
</div>
|
|
15
|
+
|
|
16
|
+
<div class="category-mosaic__grid" data-eo-hs-mount>
|
|
17
|
+
{% if section_data.mosaic_category_ids and section_data.mosaic_category_ids.size > 0 %}
|
|
18
|
+
{% for id in section_data.mosaic_category_ids %}
|
|
19
|
+
<div class="eo-hs-skeleton eo-hs-skeleton--category" aria-hidden="true"></div>
|
|
20
|
+
{% endfor %}
|
|
21
|
+
{% else %}
|
|
22
|
+
<p class="category-mosaic__placeholder">Choose categories in the section settings to build this mosaic.</p>
|
|
23
|
+
{% endif %}
|
|
24
|
+
</div>
|
|
25
|
+
</section>
|
|
26
|
+
|
|
27
|
+
<style>
|
|
28
|
+
.category-mosaic {
|
|
29
|
+
padding: clamp(2.5rem, 5vw, 4rem) 1.25rem 3rem;
|
|
30
|
+
background: #fff;
|
|
31
|
+
color: #141218;
|
|
32
|
+
}
|
|
33
|
+
.category-mosaic--tight .category-mosaic__grid {
|
|
34
|
+
gap: 0.75rem;
|
|
35
|
+
}
|
|
36
|
+
.category-mosaic__head {
|
|
37
|
+
max-width: 720px;
|
|
38
|
+
margin: 0 auto 2rem;
|
|
39
|
+
text-align: center;
|
|
40
|
+
}
|
|
41
|
+
.category-mosaic__title {
|
|
42
|
+
margin: 0 0 0.5rem;
|
|
43
|
+
font-family: ui-serif, Georgia, Cambria, 'Times New Roman', Times, serif;
|
|
44
|
+
font-weight: 500;
|
|
45
|
+
font-size: clamp(1.75rem, 4vw, 2.35rem);
|
|
46
|
+
}
|
|
47
|
+
.category-mosaic__subtitle {
|
|
48
|
+
margin: 0;
|
|
49
|
+
font-size: 1rem;
|
|
50
|
+
line-height: 1.6;
|
|
51
|
+
color: #5c5852;
|
|
52
|
+
}
|
|
53
|
+
.category-mosaic__grid {
|
|
54
|
+
max-width: 1200px;
|
|
55
|
+
margin: 0 auto;
|
|
56
|
+
display: grid;
|
|
57
|
+
grid-template-columns: repeat(var(--mosaic-cols, 3), minmax(0, 1fr));
|
|
58
|
+
gap: 1.25rem;
|
|
59
|
+
}
|
|
60
|
+
.category-mosaic__grid.eo-hs-loading {
|
|
61
|
+
opacity: 0.85;
|
|
62
|
+
}
|
|
63
|
+
@media (max-width: 899px) {
|
|
64
|
+
.category-mosaic__grid {
|
|
65
|
+
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
66
|
+
}
|
|
67
|
+
}
|
|
68
|
+
@media (max-width: 520px) {
|
|
69
|
+
.category-mosaic__grid {
|
|
70
|
+
grid-template-columns: 1fr;
|
|
71
|
+
}
|
|
72
|
+
}
|
|
73
|
+
.category-mosaic .eo-hs-skeleton--category {
|
|
74
|
+
aspect-ratio: 3 / 4;
|
|
75
|
+
border-radius: 6px;
|
|
76
|
+
background: linear-gradient(110deg, #ece8e2 8%, #f5f2ee 18%, #ece8e2 33%);
|
|
77
|
+
background-size: 200% 100%;
|
|
78
|
+
animation: category-mosaic-shimmer 1.2s ease-in-out infinite;
|
|
79
|
+
}
|
|
80
|
+
.category-mosaic__placeholder {
|
|
81
|
+
grid-column: 1 / -1;
|
|
82
|
+
margin: 0;
|
|
83
|
+
padding: 1.25rem;
|
|
84
|
+
text-align: center;
|
|
85
|
+
color: #7a7368;
|
|
86
|
+
font-size: 0.9rem;
|
|
87
|
+
}
|
|
88
|
+
.category-mosaic.eo-hs--empty .category-mosaic__grid {
|
|
89
|
+
display: flex;
|
|
90
|
+
justify-content: center;
|
|
91
|
+
}
|
|
92
|
+
.category-mosaic .eo-hs-card--category {
|
|
93
|
+
position: relative;
|
|
94
|
+
display: block;
|
|
95
|
+
text-decoration: none;
|
|
96
|
+
color: inherit;
|
|
97
|
+
border-radius: 6px;
|
|
98
|
+
overflow: hidden;
|
|
99
|
+
background: #ece8e1;
|
|
100
|
+
transition: transform 0.25s ease, box-shadow 0.25s ease;
|
|
101
|
+
}
|
|
102
|
+
.category-mosaic .eo-hs-card--category:hover {
|
|
103
|
+
transform: translateY(-4px);
|
|
104
|
+
box-shadow: 0 22px 50px rgba(20, 18, 24, 0.18);
|
|
105
|
+
}
|
|
106
|
+
.category-mosaic .eo-hs-card--category .eo-hs-card__media {
|
|
107
|
+
display: block;
|
|
108
|
+
aspect-ratio: 3 / 4;
|
|
109
|
+
background: #ece8e2;
|
|
110
|
+
overflow: hidden;
|
|
111
|
+
}
|
|
112
|
+
.category-mosaic .eo-hs-card--category .eo-hs-card__media--empty {
|
|
113
|
+
min-height: 200px;
|
|
114
|
+
}
|
|
115
|
+
.category-mosaic .eo-hs-card--category .eo-hs-card__media img {
|
|
116
|
+
width: 100%;
|
|
117
|
+
height: 100%;
|
|
118
|
+
object-fit: cover;
|
|
119
|
+
display: block;
|
|
120
|
+
transition: transform 0.45s ease;
|
|
121
|
+
}
|
|
122
|
+
.category-mosaic .eo-hs-card--category:hover .eo-hs-card__media img {
|
|
123
|
+
transform: scale(1.04);
|
|
124
|
+
}
|
|
125
|
+
.category-mosaic .eo-hs-card--category .eo-hs-card__body {
|
|
126
|
+
position: absolute;
|
|
127
|
+
left: 0;
|
|
128
|
+
right: 0;
|
|
129
|
+
bottom: 0;
|
|
130
|
+
padding: 1.25rem 1.1rem 1.1rem;
|
|
131
|
+
background: linear-gradient(to top, rgba(12, 10, 14, 0.72), transparent 55%);
|
|
132
|
+
}
|
|
133
|
+
.category-mosaic .eo-hs-card--category .eo-hs-card__title {
|
|
134
|
+
font-size: 1.05rem;
|
|
135
|
+
font-weight: 600;
|
|
136
|
+
letter-spacing: 0.02em;
|
|
137
|
+
color: #fff;
|
|
138
|
+
}
|
|
139
|
+
.category-mosaic .eo-hs-error {
|
|
140
|
+
grid-column: 1 / -1;
|
|
141
|
+
margin: 0;
|
|
142
|
+
padding: 1rem;
|
|
143
|
+
text-align: center;
|
|
144
|
+
font-size: 0.88rem;
|
|
145
|
+
color: #8b3225;
|
|
146
|
+
}
|
|
147
|
+
@keyframes category-mosaic-shimmer {
|
|
148
|
+
0% {
|
|
149
|
+
background-position: 100% 0;
|
|
150
|
+
}
|
|
151
|
+
100% {
|
|
152
|
+
background-position: -100% 0;
|
|
153
|
+
}
|
|
154
|
+
}
|
|
155
|
+
</style>
|
|
@@ -1,67 +1,67 @@
|
|
|
1
|
-
{
|
|
2
|
-
"icon": "https://api.iconify.design/lucide:layout-template.svg",
|
|
3
|
-
"label": "Editorial feature",
|
|
4
|
-
"section_schema": [
|
|
5
|
-
{
|
|
6
|
-
"name": "image",
|
|
7
|
-
"type": "image",
|
|
8
|
-
"default": "",
|
|
9
|
-
"description": "Feature image"
|
|
10
|
-
},
|
|
11
|
-
{
|
|
12
|
-
"name": "eyebrow",
|
|
13
|
-
"type": "string",
|
|
14
|
-
"default": "Inside the atelier",
|
|
15
|
-
"description": "Small label above the title"
|
|
16
|
-
},
|
|
17
|
-
{
|
|
18
|
-
"name": "title",
|
|
19
|
-
"type": "string",
|
|
20
|
-
"default": "Tailoring that moves with you",
|
|
21
|
-
"description": "Headline"
|
|
22
|
-
},
|
|
23
|
-
{
|
|
24
|
-
"name": "body",
|
|
25
|
-
"type": "string",
|
|
26
|
-
"default": "Precision cuts and fluid fabrics—designed for city days and slow evenings. Discover the pieces our stylists reach for first.",
|
|
27
|
-
"description": "Body copy"
|
|
28
|
-
},
|
|
29
|
-
{
|
|
30
|
-
"name": "cta_label",
|
|
31
|
-
"type": "string",
|
|
32
|
-
"default": "Explore the story",
|
|
33
|
-
"description": "Link label"
|
|
34
|
-
},
|
|
35
|
-
{
|
|
36
|
-
"name": "cta_page_id",
|
|
37
|
-
"type": "page_single_select",
|
|
38
|
-
"description": "Simple page the CTA opens (link URL is resolved on the storefront)"
|
|
39
|
-
},
|
|
40
|
-
{
|
|
41
|
-
"name": "image_position",
|
|
42
|
-
"type": "select",
|
|
43
|
-
"default": "left",
|
|
44
|
-
"description": "Image side on desktop",
|
|
45
|
-
"options": [
|
|
46
|
-
{ "label": "Image left", "value": "left" },
|
|
47
|
-
{ "label": "Image right", "value": "right" }
|
|
48
|
-
]
|
|
49
|
-
},
|
|
50
|
-
{
|
|
51
|
-
"name": "surface",
|
|
52
|
-
"type": "select",
|
|
53
|
-
"default": "light",
|
|
54
|
-
"description": "Color mood",
|
|
55
|
-
"options": [
|
|
56
|
-
{ "label": "Light editorial", "value": "light" },
|
|
57
|
-
{ "label": "Dark editorial", "value": "dark" }
|
|
58
|
-
]
|
|
59
|
-
},
|
|
60
|
-
{
|
|
61
|
-
"name": "accent_color",
|
|
62
|
-
"type": "color",
|
|
63
|
-
"default": "#8B7355",
|
|
64
|
-
"description": "Eyebrow and link accent"
|
|
65
|
-
}
|
|
66
|
-
]
|
|
67
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"icon": "https://api.iconify.design/lucide:layout-template.svg",
|
|
3
|
+
"label": "Editorial feature",
|
|
4
|
+
"section_schema": [
|
|
5
|
+
{
|
|
6
|
+
"name": "image",
|
|
7
|
+
"type": "image",
|
|
8
|
+
"default": "",
|
|
9
|
+
"description": "Feature image"
|
|
10
|
+
},
|
|
11
|
+
{
|
|
12
|
+
"name": "eyebrow",
|
|
13
|
+
"type": "string",
|
|
14
|
+
"default": "Inside the atelier",
|
|
15
|
+
"description": "Small label above the title"
|
|
16
|
+
},
|
|
17
|
+
{
|
|
18
|
+
"name": "title",
|
|
19
|
+
"type": "string",
|
|
20
|
+
"default": "Tailoring that moves with you",
|
|
21
|
+
"description": "Headline"
|
|
22
|
+
},
|
|
23
|
+
{
|
|
24
|
+
"name": "body",
|
|
25
|
+
"type": "string",
|
|
26
|
+
"default": "Precision cuts and fluid fabrics—designed for city days and slow evenings. Discover the pieces our stylists reach for first.",
|
|
27
|
+
"description": "Body copy"
|
|
28
|
+
},
|
|
29
|
+
{
|
|
30
|
+
"name": "cta_label",
|
|
31
|
+
"type": "string",
|
|
32
|
+
"default": "Explore the story",
|
|
33
|
+
"description": "Link label"
|
|
34
|
+
},
|
|
35
|
+
{
|
|
36
|
+
"name": "cta_page_id",
|
|
37
|
+
"type": "page_single_select",
|
|
38
|
+
"description": "Simple page the CTA opens (link URL is resolved on the storefront)"
|
|
39
|
+
},
|
|
40
|
+
{
|
|
41
|
+
"name": "image_position",
|
|
42
|
+
"type": "select",
|
|
43
|
+
"default": "left",
|
|
44
|
+
"description": "Image side on desktop",
|
|
45
|
+
"options": [
|
|
46
|
+
{ "label": "Image left", "value": "left" },
|
|
47
|
+
{ "label": "Image right", "value": "right" }
|
|
48
|
+
]
|
|
49
|
+
},
|
|
50
|
+
{
|
|
51
|
+
"name": "surface",
|
|
52
|
+
"type": "select",
|
|
53
|
+
"default": "light",
|
|
54
|
+
"description": "Color mood",
|
|
55
|
+
"options": [
|
|
56
|
+
{ "label": "Light editorial", "value": "light" },
|
|
57
|
+
{ "label": "Dark editorial", "value": "dark" }
|
|
58
|
+
]
|
|
59
|
+
},
|
|
60
|
+
{
|
|
61
|
+
"name": "accent_color",
|
|
62
|
+
"type": "color",
|
|
63
|
+
"default": "#8B7355",
|
|
64
|
+
"description": "Eyebrow and link accent"
|
|
65
|
+
}
|
|
66
|
+
]
|
|
67
|
+
}
|