easyorders 0.1.16 → 0.1.18
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 +5 -3
- package/dist/bin/cli.js +22 -8
- package/dist/server/index.js +12 -7
- package/dist/template/theme/config.json +24 -26
- package/dist/template/theme/home-sections/category-mosaic/config.json +125 -125
- package/dist/template/theme/home-sections/category-mosaic/template.liquid +170 -170
- package/dist/template/theme/home-sections/editorial-feature/config.json +93 -93
- package/dist/template/theme/home-sections/editorial-feature/template.liquid +154 -154
- package/dist/template/theme/home-sections/newsletter-luxe/config.json +86 -86
- package/dist/template/theme/home-sections/newsletter-luxe/template.liquid +150 -150
- package/dist/template/theme/home-sections/runway-hero/config.json +148 -148
- package/dist/template/theme/home-sections/runway-hero/template.liquid +189 -189
- package/dist/template/theme/home-sections/shop-the-look/config.json +167 -167
- package/dist/template/theme/home-sections/shop-the-look/template.liquid +326 -326
- package/dist/template/theme/home-sections/trust-promise/config.json +121 -121
- package/package.json +2 -2
|
@@ -1,167 +1,167 @@
|
|
|
1
|
-
{
|
|
2
|
-
"icon": "https://files.easy-orders.net/1778106825738601358.png",
|
|
3
|
-
"label": "Shop the look",
|
|
4
|
-
"section_schema": [
|
|
5
|
-
{
|
|
6
|
-
"name": "eyebrow",
|
|
7
|
-
"type": "string",
|
|
8
|
-
"default": "Styling room",
|
|
9
|
-
"description": "Label above the section title"
|
|
10
|
-
},
|
|
11
|
-
{
|
|
12
|
-
"name": "title",
|
|
13
|
-
"type": "string",
|
|
14
|
-
"default": "Shop the look",
|
|
15
|
-
"description": "Section heading"
|
|
16
|
-
},
|
|
17
|
-
{
|
|
18
|
-
"name": "subtitle",
|
|
19
|
-
"type": "string",
|
|
20
|
-
"default": "One outfit, every piece linked—build yours in a single pass.",
|
|
21
|
-
"description": "Intro line beside the hero look"
|
|
22
|
-
},
|
|
23
|
-
{
|
|
24
|
-
"name": "heading_title_color",
|
|
25
|
-
"type": "color",
|
|
26
|
-
"default": "",
|
|
27
|
-
"description": "Section title color (empty = inherit from theme)"
|
|
28
|
-
},
|
|
29
|
-
{
|
|
30
|
-
"name": "heading_title_size",
|
|
31
|
-
"type": "number",
|
|
32
|
-
"default": 38,
|
|
33
|
-
"description": "Section title size (px)"
|
|
34
|
-
},
|
|
35
|
-
{
|
|
36
|
-
"name": "heading_title_weight",
|
|
37
|
-
"type": "select",
|
|
38
|
-
"default": "500",
|
|
39
|
-
"description": "Section title font weight",
|
|
40
|
-
"options": [
|
|
41
|
-
{ "label": "Regular 400", "value": "400" },
|
|
42
|
-
{ "label": "Medium 500", "value": "500" },
|
|
43
|
-
{ "label": "SemiBold 600", "value": "600" },
|
|
44
|
-
{ "label": "Bold 700", "value": "700" }
|
|
45
|
-
]
|
|
46
|
-
},
|
|
47
|
-
{
|
|
48
|
-
"name": "heading_subtitle_color",
|
|
49
|
-
"type": "color",
|
|
50
|
-
"default": "",
|
|
51
|
-
"description": "Section subtitle color (empty = inherit)"
|
|
52
|
-
},
|
|
53
|
-
{
|
|
54
|
-
"name": "heading_subtitle_size",
|
|
55
|
-
"type": "number",
|
|
56
|
-
"default": 16,
|
|
57
|
-
"description": "Section subtitle size (px)"
|
|
58
|
-
},
|
|
59
|
-
{
|
|
60
|
-
"name": "heading_subtitle_weight",
|
|
61
|
-
"type": "select",
|
|
62
|
-
"default": "400",
|
|
63
|
-
"description": "Section subtitle font weight",
|
|
64
|
-
"options": [
|
|
65
|
-
{ "label": "Regular 400", "value": "400" },
|
|
66
|
-
{ "label": "Medium 500", "value": "500" },
|
|
67
|
-
{ "label": "SemiBold 600", "value": "600" },
|
|
68
|
-
{ "label": "Bold 700", "value": "700" }
|
|
69
|
-
]
|
|
70
|
-
},
|
|
71
|
-
{
|
|
72
|
-
"name": "look_image",
|
|
73
|
-
"type": "image",
|
|
74
|
-
"default": "",
|
|
75
|
-
"description": "Main outfit or editorial image"
|
|
76
|
-
},
|
|
77
|
-
{
|
|
78
|
-
"name": "look_title",
|
|
79
|
-
"type": "string",
|
|
80
|
-
"default": "City nights",
|
|
81
|
-
"description": "Title on the hero card"
|
|
82
|
-
},
|
|
83
|
-
{
|
|
84
|
-
"name": "look_caption",
|
|
85
|
-
"type": "string",
|
|
86
|
-
"default": "Layered wool, soft leather, and a hint of shine.",
|
|
87
|
-
"description": "Short caption under the title"
|
|
88
|
-
},
|
|
89
|
-
{
|
|
90
|
-
"name": "look_url",
|
|
91
|
-
"type": "string",
|
|
92
|
-
"default": "/products",
|
|
93
|
-
"description": "Link for the full look CTA"
|
|
94
|
-
},
|
|
95
|
-
{
|
|
96
|
-
"name": "look_cta_label",
|
|
97
|
-
"type": "string",
|
|
98
|
-
"default": "Shop full look",
|
|
99
|
-
"description": "Hero card button label"
|
|
100
|
-
},
|
|
101
|
-
{
|
|
102
|
-
"name": "accent_color",
|
|
103
|
-
"type": "color",
|
|
104
|
-
"default": "#C9A962",
|
|
105
|
-
"description": "Accent for labels and buttons"
|
|
106
|
-
},
|
|
107
|
-
{
|
|
108
|
-
"name": "surface",
|
|
109
|
-
"type": "select",
|
|
110
|
-
"default": "cream",
|
|
111
|
-
"description": "Background style",
|
|
112
|
-
"options": [
|
|
113
|
-
{ "label": "Warm cream", "value": "cream" },
|
|
114
|
-
{ "label": "Soft charcoal", "value": "charcoal" }
|
|
115
|
-
]
|
|
116
|
-
},
|
|
117
|
-
{
|
|
118
|
-
"name": "card_bg_color",
|
|
119
|
-
"type": "color",
|
|
120
|
-
"default": "",
|
|
121
|
-
"description": "لون خلفية كارد المنتج (فارغ = افتراضي)"
|
|
122
|
-
},
|
|
123
|
-
{
|
|
124
|
-
"name": "card_title_color",
|
|
125
|
-
"type": "color",
|
|
126
|
-
"default": "",
|
|
127
|
-
"description": "لون اسم المنتج في الكارد"
|
|
128
|
-
},
|
|
129
|
-
{
|
|
130
|
-
"name": "card_price_color",
|
|
131
|
-
"type": "color",
|
|
132
|
-
"default": "",
|
|
133
|
-
"description": "لون السعر الحالي"
|
|
134
|
-
},
|
|
135
|
-
{
|
|
136
|
-
"name": "card_old_price_color",
|
|
137
|
-
"type": "color",
|
|
138
|
-
"default": "",
|
|
139
|
-
"description": "لون السعر القديم (قبل الخصم)"
|
|
140
|
-
},
|
|
141
|
-
{
|
|
142
|
-
"name": "pick_product_ids",
|
|
143
|
-
"type": "product_multi_select",
|
|
144
|
-
"description": "Products to show beside the hero (search and reorder in the picker)"
|
|
145
|
-
},
|
|
146
|
-
{
|
|
147
|
-
"name": "enable_animation",
|
|
148
|
-
"type": "boolean",
|
|
149
|
-
"default": true,
|
|
150
|
-
"description": "تشغيل أنيميشن الدخول"
|
|
151
|
-
},
|
|
152
|
-
{
|
|
153
|
-
"name": "animation_style",
|
|
154
|
-
"type": "select",
|
|
155
|
-
"default": "fade-up",
|
|
156
|
-
"description": "شكل الأنيميشن",
|
|
157
|
-
"options": [
|
|
158
|
-
{ "label": "Fade Up", "value": "fade-up" },
|
|
159
|
-
{ "label": "Zoom In", "value": "zoom-in" },
|
|
160
|
-
{ "label": "Blur Reveal", "value": "blur-reveal" },
|
|
161
|
-
{ "label": "Slide Cascade", "value": "slide-cascade" },
|
|
162
|
-
{ "label": "Fade Right", "value": "fade-right" },
|
|
163
|
-
{ "label": "Flip Up", "value": "flip-up" }
|
|
164
|
-
]
|
|
165
|
-
}
|
|
166
|
-
]
|
|
167
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"icon": "https://files.easy-orders.net/1778106825738601358.png",
|
|
3
|
+
"label": "Shop the look",
|
|
4
|
+
"section_schema": [
|
|
5
|
+
{
|
|
6
|
+
"name": "eyebrow",
|
|
7
|
+
"type": "string",
|
|
8
|
+
"default": "Styling room",
|
|
9
|
+
"description": "Label above the section title"
|
|
10
|
+
},
|
|
11
|
+
{
|
|
12
|
+
"name": "title",
|
|
13
|
+
"type": "string",
|
|
14
|
+
"default": "Shop the look",
|
|
15
|
+
"description": "Section heading"
|
|
16
|
+
},
|
|
17
|
+
{
|
|
18
|
+
"name": "subtitle",
|
|
19
|
+
"type": "string",
|
|
20
|
+
"default": "One outfit, every piece linked—build yours in a single pass.",
|
|
21
|
+
"description": "Intro line beside the hero look"
|
|
22
|
+
},
|
|
23
|
+
{
|
|
24
|
+
"name": "heading_title_color",
|
|
25
|
+
"type": "color",
|
|
26
|
+
"default": "",
|
|
27
|
+
"description": "Section title color (empty = inherit from theme)"
|
|
28
|
+
},
|
|
29
|
+
{
|
|
30
|
+
"name": "heading_title_size",
|
|
31
|
+
"type": "number",
|
|
32
|
+
"default": 38,
|
|
33
|
+
"description": "Section title size (px)"
|
|
34
|
+
},
|
|
35
|
+
{
|
|
36
|
+
"name": "heading_title_weight",
|
|
37
|
+
"type": "select",
|
|
38
|
+
"default": "500",
|
|
39
|
+
"description": "Section title font weight",
|
|
40
|
+
"options": [
|
|
41
|
+
{ "label": "Regular 400", "value": "400" },
|
|
42
|
+
{ "label": "Medium 500", "value": "500" },
|
|
43
|
+
{ "label": "SemiBold 600", "value": "600" },
|
|
44
|
+
{ "label": "Bold 700", "value": "700" }
|
|
45
|
+
]
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
"name": "heading_subtitle_color",
|
|
49
|
+
"type": "color",
|
|
50
|
+
"default": "",
|
|
51
|
+
"description": "Section subtitle color (empty = inherit)"
|
|
52
|
+
},
|
|
53
|
+
{
|
|
54
|
+
"name": "heading_subtitle_size",
|
|
55
|
+
"type": "number",
|
|
56
|
+
"default": 16,
|
|
57
|
+
"description": "Section subtitle size (px)"
|
|
58
|
+
},
|
|
59
|
+
{
|
|
60
|
+
"name": "heading_subtitle_weight",
|
|
61
|
+
"type": "select",
|
|
62
|
+
"default": "400",
|
|
63
|
+
"description": "Section subtitle font weight",
|
|
64
|
+
"options": [
|
|
65
|
+
{ "label": "Regular 400", "value": "400" },
|
|
66
|
+
{ "label": "Medium 500", "value": "500" },
|
|
67
|
+
{ "label": "SemiBold 600", "value": "600" },
|
|
68
|
+
{ "label": "Bold 700", "value": "700" }
|
|
69
|
+
]
|
|
70
|
+
},
|
|
71
|
+
{
|
|
72
|
+
"name": "look_image",
|
|
73
|
+
"type": "image",
|
|
74
|
+
"default": "",
|
|
75
|
+
"description": "Main outfit or editorial image"
|
|
76
|
+
},
|
|
77
|
+
{
|
|
78
|
+
"name": "look_title",
|
|
79
|
+
"type": "string",
|
|
80
|
+
"default": "City nights",
|
|
81
|
+
"description": "Title on the hero card"
|
|
82
|
+
},
|
|
83
|
+
{
|
|
84
|
+
"name": "look_caption",
|
|
85
|
+
"type": "string",
|
|
86
|
+
"default": "Layered wool, soft leather, and a hint of shine.",
|
|
87
|
+
"description": "Short caption under the title"
|
|
88
|
+
},
|
|
89
|
+
{
|
|
90
|
+
"name": "look_url",
|
|
91
|
+
"type": "string",
|
|
92
|
+
"default": "/products",
|
|
93
|
+
"description": "Link for the full look CTA"
|
|
94
|
+
},
|
|
95
|
+
{
|
|
96
|
+
"name": "look_cta_label",
|
|
97
|
+
"type": "string",
|
|
98
|
+
"default": "Shop full look",
|
|
99
|
+
"description": "Hero card button label"
|
|
100
|
+
},
|
|
101
|
+
{
|
|
102
|
+
"name": "accent_color",
|
|
103
|
+
"type": "color",
|
|
104
|
+
"default": "#C9A962",
|
|
105
|
+
"description": "Accent for labels and buttons"
|
|
106
|
+
},
|
|
107
|
+
{
|
|
108
|
+
"name": "surface",
|
|
109
|
+
"type": "select",
|
|
110
|
+
"default": "cream",
|
|
111
|
+
"description": "Background style",
|
|
112
|
+
"options": [
|
|
113
|
+
{ "label": "Warm cream", "value": "cream" },
|
|
114
|
+
{ "label": "Soft charcoal", "value": "charcoal" }
|
|
115
|
+
]
|
|
116
|
+
},
|
|
117
|
+
{
|
|
118
|
+
"name": "card_bg_color",
|
|
119
|
+
"type": "color",
|
|
120
|
+
"default": "",
|
|
121
|
+
"description": "لون خلفية كارد المنتج (فارغ = افتراضي)"
|
|
122
|
+
},
|
|
123
|
+
{
|
|
124
|
+
"name": "card_title_color",
|
|
125
|
+
"type": "color",
|
|
126
|
+
"default": "",
|
|
127
|
+
"description": "لون اسم المنتج في الكارد"
|
|
128
|
+
},
|
|
129
|
+
{
|
|
130
|
+
"name": "card_price_color",
|
|
131
|
+
"type": "color",
|
|
132
|
+
"default": "",
|
|
133
|
+
"description": "لون السعر الحالي"
|
|
134
|
+
},
|
|
135
|
+
{
|
|
136
|
+
"name": "card_old_price_color",
|
|
137
|
+
"type": "color",
|
|
138
|
+
"default": "",
|
|
139
|
+
"description": "لون السعر القديم (قبل الخصم)"
|
|
140
|
+
},
|
|
141
|
+
{
|
|
142
|
+
"name": "pick_product_ids",
|
|
143
|
+
"type": "product_multi_select",
|
|
144
|
+
"description": "Products to show beside the hero (search and reorder in the picker)"
|
|
145
|
+
},
|
|
146
|
+
{
|
|
147
|
+
"name": "enable_animation",
|
|
148
|
+
"type": "boolean",
|
|
149
|
+
"default": true,
|
|
150
|
+
"description": "تشغيل أنيميشن الدخول"
|
|
151
|
+
},
|
|
152
|
+
{
|
|
153
|
+
"name": "animation_style",
|
|
154
|
+
"type": "select",
|
|
155
|
+
"default": "fade-up",
|
|
156
|
+
"description": "شكل الأنيميشن",
|
|
157
|
+
"options": [
|
|
158
|
+
{ "label": "Fade Up", "value": "fade-up" },
|
|
159
|
+
{ "label": "Zoom In", "value": "zoom-in" },
|
|
160
|
+
{ "label": "Blur Reveal", "value": "blur-reveal" },
|
|
161
|
+
{ "label": "Slide Cascade", "value": "slide-cascade" },
|
|
162
|
+
{ "label": "Fade Right", "value": "fade-right" },
|
|
163
|
+
{ "label": "Flip Up", "value": "flip-up" }
|
|
164
|
+
]
|
|
165
|
+
}
|
|
166
|
+
]
|
|
167
|
+
}
|