easyorders 0.1.15 → 0.1.16
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/template/theme/config.json +45 -27
- package/dist/template/theme/home-sections/Tilted-Scrolling-Marque/config.json +107 -0
- package/dist/template/theme/home-sections/Tilted-Scrolling-Marque/template.liquid +171 -0
- package/dist/template/theme/home-sections/category-mosaic/config.json +125 -40
- package/dist/template/theme/home-sections/category-mosaic/template.liquid +170 -155
- package/dist/template/theme/home-sections/different-hero/config.json +199 -0
- package/dist/template/theme/home-sections/different-hero/template.liquid +219 -0
- package/dist/template/theme/home-sections/editorial-feature/config.json +93 -67
- package/dist/template/theme/home-sections/editorial-feature/template.liquid +154 -153
- package/dist/template/theme/home-sections/newsletter-luxe/config.json +86 -60
- package/dist/template/theme/home-sections/newsletter-luxe/template.liquid +150 -144
- package/dist/template/theme/home-sections/runway-hero/config.json +148 -91
- package/dist/template/theme/home-sections/runway-hero/template.liquid +189 -159
- package/dist/template/theme/home-sections/shop-the-look/config.json +167 -75
- package/dist/template/theme/home-sections/shop-the-look/template.liquid +326 -304
- package/dist/template/theme/home-sections/slider-before-after/config.json +213 -0
- package/dist/template/theme/home-sections/slider-before-after/template.liquid +336 -0
- package/dist/template/theme/home-sections/test-hero-allbird/config.json +130 -0
- package/dist/template/theme/home-sections/test-hero-allbird/template.liquid +149 -0
- package/dist/template/theme/home-sections/trust-promise/config.json +121 -47
- package/dist/template/theme/home-sections/trust-promise/template.liquid +34 -11
- package/dist/template/theme/home-sections/zoom-parallax/config.json +48 -0
- package/dist/template/theme/home-sections/zoom-parallax/template.liquid +135 -0
- package/dist/template/theme/product-data-schema.json +27 -0
- package/dist/template/theme/schema.json +114 -129
- package/dist/template/theme/script.js +694 -185
- package/dist/template/theme/sections/categories.liquid +20 -4
- package/dist/template/theme/sections/featured-products.liquid +65 -32
- package/dist/template/theme/sections/fixed-buy-button.liquid +6 -1
- package/dist/template/theme/sections/footer.liquid +90 -91
- package/dist/template/theme/sections/gallery.liquid +37 -33
- package/dist/template/theme/sections/header.liquid +105 -25
- package/dist/template/theme/sections/home-products-grid.liquid +68 -10
- package/dist/template/theme/sections/list-products.liquid +73 -30
- package/dist/template/theme/sections/order-invoice.liquid +39 -91
- package/dist/template/theme/sections/product-description.liquid +18 -8
- package/dist/template/theme/sections/product-details.liquid +9 -24
- package/dist/template/theme/sections/products-grid.liquid +102 -54
- package/dist/template/theme/sections/related-products.liquid +124 -60
- package/dist/template/theme/sections/reviews.liquid +43 -28
- package/dist/template/theme/style.css +2283 -589
- package/dist/template/theme/theme-data.json +25 -8
- package/package.json +1 -1
|
@@ -1,151 +1,136 @@
|
|
|
1
1
|
[
|
|
2
2
|
{
|
|
3
|
-
"name": "
|
|
4
|
-
"type": "
|
|
5
|
-
"default":
|
|
6
|
-
"
|
|
7
|
-
|
|
8
|
-
{
|
|
9
|
-
"name": "font_size_base",
|
|
10
|
-
"type": "number",
|
|
11
|
-
"default": 16,
|
|
12
|
-
"description": "Base font size in px"
|
|
3
|
+
"name": "show_sale_badge",
|
|
4
|
+
"type": "checkbox",
|
|
5
|
+
"default": true,
|
|
6
|
+
"group": "Products",
|
|
7
|
+
"description": "Show sale badge on product cards"
|
|
13
8
|
},
|
|
14
9
|
{
|
|
15
|
-
"name": "
|
|
10
|
+
"name": "sale_badge_bg_color",
|
|
16
11
|
"type": "color",
|
|
17
|
-
"default": "#
|
|
18
|
-
"
|
|
12
|
+
"default": "#c94a4a",
|
|
13
|
+
"group": "Products",
|
|
14
|
+
"description": "Sale badge background"
|
|
19
15
|
},
|
|
20
16
|
{
|
|
21
|
-
"name": "
|
|
22
|
-
"type": "
|
|
23
|
-
"default":
|
|
24
|
-
"
|
|
17
|
+
"name": "sale_badge_text_color",
|
|
18
|
+
"type": "color",
|
|
19
|
+
"default": "#ffffff",
|
|
20
|
+
"group": "Products",
|
|
21
|
+
"description": "Sale badge text"
|
|
25
22
|
},
|
|
26
23
|
{
|
|
27
|
-
"name": "
|
|
24
|
+
"name": "card_background_product",
|
|
28
25
|
"type": "select",
|
|
29
|
-
"default": "
|
|
26
|
+
"default": "color",
|
|
27
|
+
"group": "Products",
|
|
28
|
+
"description": "Card background product",
|
|
30
29
|
"options": [
|
|
31
30
|
{
|
|
32
|
-
"label": "
|
|
33
|
-
"value": "
|
|
34
|
-
},
|
|
35
|
-
{
|
|
36
|
-
"label": "Dark",
|
|
37
|
-
"value": "dark"
|
|
31
|
+
"label": "Color background",
|
|
32
|
+
"value": "color"
|
|
38
33
|
},
|
|
39
34
|
{
|
|
40
|
-
"label": "
|
|
41
|
-
"value": "
|
|
35
|
+
"label": "Transparent",
|
|
36
|
+
"value": "transparent"
|
|
42
37
|
}
|
|
43
|
-
]
|
|
44
|
-
|
|
38
|
+
]
|
|
39
|
+
},
|
|
40
|
+
{
|
|
41
|
+
"name": "card_background_product_color",
|
|
42
|
+
"type": "color",
|
|
43
|
+
"default": "#f5f4f2",
|
|
44
|
+
"group": "Products",
|
|
45
|
+
"description": "Card background product color"
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
"name": "footer_newsletter_title",
|
|
49
|
+
"type": "string",
|
|
50
|
+
"default": "",
|
|
51
|
+
"group": "Footer",
|
|
52
|
+
"description": "Footer newsletter title (leave empty to use default label)"
|
|
53
|
+
},
|
|
54
|
+
{
|
|
55
|
+
"name": "footer_newsletter_description",
|
|
56
|
+
"type": "string",
|
|
57
|
+
"default": "",
|
|
58
|
+
"group": "Footer",
|
|
59
|
+
"description": "Footer newsletter description"
|
|
60
|
+
},
|
|
61
|
+
{
|
|
62
|
+
"name": "hide_newsletter_mobile",
|
|
63
|
+
"type": "checkbox",
|
|
64
|
+
"default": false,
|
|
65
|
+
"group": "Footer",
|
|
66
|
+
"description": "Hide footer newsletter section on mobile only"
|
|
67
|
+
},
|
|
68
|
+
{
|
|
69
|
+
"name": "show_payment_icons",
|
|
70
|
+
"type": "checkbox",
|
|
71
|
+
"default": true,
|
|
72
|
+
"group": "Footer",
|
|
73
|
+
"description": "Show payment methods in footer"
|
|
74
|
+
},
|
|
75
|
+
{
|
|
76
|
+
"name": "main_container_padding_top",
|
|
77
|
+
"type": "number",
|
|
78
|
+
"default": 70,
|
|
79
|
+
"description": "Main container padding top"
|
|
45
80
|
},
|
|
46
81
|
{
|
|
47
|
-
"name": "
|
|
48
|
-
"type": "
|
|
49
|
-
"default":
|
|
82
|
+
"name": "header_category_strip_bg_color",
|
|
83
|
+
"type": "color",
|
|
84
|
+
"default": "#e1dbd1",
|
|
85
|
+
"group": "Header",
|
|
86
|
+
"description": "Mobile categories strip background (below header)"
|
|
87
|
+
},
|
|
88
|
+
{
|
|
89
|
+
"name": "header_category_strip_text_color",
|
|
90
|
+
"type": "color",
|
|
91
|
+
"default": "#212a2f",
|
|
92
|
+
"group": "Header",
|
|
93
|
+
"description": "Mobile categories strip link text color"
|
|
94
|
+
},
|
|
95
|
+
{
|
|
96
|
+
"name": "pgrid_hero_cta_text_color",
|
|
97
|
+
"type": "color",
|
|
98
|
+
"group": "Products grid hero CTA",
|
|
99
|
+
"default": "#1f272b",
|
|
100
|
+
"description": "Products grid hero CTA text color"
|
|
101
|
+
},
|
|
102
|
+
{
|
|
103
|
+
"name": "pgrid_hero_cta_font_weight",
|
|
104
|
+
"type": "select",
|
|
105
|
+
"default": "600",
|
|
106
|
+
"group": "Products grid hero CTA",
|
|
107
|
+
"description": "Products grid hero CTA font weight",
|
|
50
108
|
"options": [
|
|
51
|
-
{
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
}
|
|
55
|
-
|
|
56
|
-
"label": "New arrival",
|
|
57
|
-
"value": "new"
|
|
58
|
-
},
|
|
59
|
-
{
|
|
60
|
-
"label": "Bestseller",
|
|
61
|
-
"value": "bestseller"
|
|
62
|
-
},
|
|
63
|
-
{
|
|
64
|
-
"label": "Low stock",
|
|
65
|
-
"value": "low_stock"
|
|
66
|
-
},
|
|
67
|
-
{
|
|
68
|
-
"label": "Sold out",
|
|
69
|
-
"value": "sold_out"
|
|
70
|
-
}
|
|
71
|
-
],
|
|
72
|
-
"description": "Active product badge types"
|
|
109
|
+
{ "label": "Regular (400)", "value": "400" },
|
|
110
|
+
{ "label": "Medium (500)", "value": "500" },
|
|
111
|
+
{ "label": "Semibold (600)", "value": "600" },
|
|
112
|
+
{ "label": "Bold (700)", "value": "700" }
|
|
113
|
+
]
|
|
73
114
|
},
|
|
74
115
|
{
|
|
75
|
-
"name": "
|
|
76
|
-
"type": "
|
|
77
|
-
"
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
"description": "Overlay darkness (0–100)"
|
|
95
|
-
},
|
|
96
|
-
{
|
|
97
|
-
"name": "text_color",
|
|
98
|
-
"type": "color",
|
|
99
|
-
"default": "#FFFFFF",
|
|
100
|
-
"description": "Slide text color"
|
|
101
|
-
},
|
|
102
|
-
{
|
|
103
|
-
"name": "enabled",
|
|
104
|
-
"type": "boolean",
|
|
105
|
-
"default": true,
|
|
106
|
-
"description": "Enable this slide"
|
|
107
|
-
},
|
|
108
|
-
{
|
|
109
|
-
"name": "cta_style",
|
|
110
|
-
"type": "select",
|
|
111
|
-
"default": "filled",
|
|
112
|
-
"options": [
|
|
113
|
-
{
|
|
114
|
-
"label": "Filled",
|
|
115
|
-
"value": "filled"
|
|
116
|
-
},
|
|
117
|
-
{
|
|
118
|
-
"label": "Outline",
|
|
119
|
-
"value": "outline"
|
|
120
|
-
},
|
|
121
|
-
{
|
|
122
|
-
"label": "Text only",
|
|
123
|
-
"value": "text"
|
|
124
|
-
}
|
|
125
|
-
],
|
|
126
|
-
"description": "CTA button style"
|
|
127
|
-
},
|
|
128
|
-
{
|
|
129
|
-
"name": "show_on_devices",
|
|
130
|
-
"type": "multi_select",
|
|
131
|
-
"default": ["desktop", "mobile"],
|
|
132
|
-
"options": [
|
|
133
|
-
{
|
|
134
|
-
"label": "Desktop",
|
|
135
|
-
"value": "desktop"
|
|
136
|
-
},
|
|
137
|
-
{
|
|
138
|
-
"label": "Tablet",
|
|
139
|
-
"value": "tablet"
|
|
140
|
-
},
|
|
141
|
-
{
|
|
142
|
-
"label": "Mobile",
|
|
143
|
-
"value": "mobile"
|
|
144
|
-
}
|
|
145
|
-
],
|
|
146
|
-
"description": "Show this slide on"
|
|
147
|
-
}
|
|
148
|
-
],
|
|
149
|
-
"description": "Hero slide"
|
|
116
|
+
"name": "featured_hero_subtitle_text_color",
|
|
117
|
+
"type": "color",
|
|
118
|
+
"group": "Featured hero",
|
|
119
|
+
"default": "#ffffff",
|
|
120
|
+
"description": "Featured hero subtitle text color"
|
|
121
|
+
},
|
|
122
|
+
{
|
|
123
|
+
"name": "featured_hero_cta_background_color",
|
|
124
|
+
"type": "color",
|
|
125
|
+
"group": "Featured hero",
|
|
126
|
+
"default": "#ffffff",
|
|
127
|
+
"description": "Featured hero CTA background"
|
|
128
|
+
},
|
|
129
|
+
{
|
|
130
|
+
"name": "featured_hero_cta_text_color",
|
|
131
|
+
"type": "color",
|
|
132
|
+
"group": "Featured hero",
|
|
133
|
+
"default": "#1f272b",
|
|
134
|
+
"description": "Featured hero CTA text color"
|
|
150
135
|
}
|
|
151
136
|
]
|