@o2vend/theme-cli 1.0.32
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 +425 -0
- package/assets/Logo_o2vend.png +0 -0
- package/assets/favicon.png +0 -0
- package/assets/logo-white.png +0 -0
- package/bin/o2vend +42 -0
- package/config/widget-map.json +50 -0
- package/lib/commands/check.js +201 -0
- package/lib/commands/generate.js +33 -0
- package/lib/commands/init.js +214 -0
- package/lib/commands/optimize.js +216 -0
- package/lib/commands/package.js +208 -0
- package/lib/commands/serve.js +105 -0
- package/lib/commands/validate.js +191 -0
- package/lib/lib/api-client.js +357 -0
- package/lib/lib/dev-server.js +2618 -0
- package/lib/lib/file-watcher.js +80 -0
- package/lib/lib/hot-reload.js +106 -0
- package/lib/lib/liquid-engine.js +822 -0
- package/lib/lib/liquid-filters.js +671 -0
- package/lib/lib/mock-api-server.js +989 -0
- package/lib/lib/mock-data.js +1468 -0
- package/lib/lib/widget-service.js +321 -0
- package/package.json +70 -0
- package/test-theme/README.md +27 -0
- package/test-theme/assets/async-sections.js +446 -0
- package/test-theme/assets/cart-drawer.js +463 -0
- package/test-theme/assets/cart-manager.js +223 -0
- package/test-theme/assets/checkout-price-handler.js +368 -0
- package/test-theme/assets/components.css +4629 -0
- package/test-theme/assets/delivery-zone.css +299 -0
- package/test-theme/assets/delivery-zone.js +396 -0
- package/test-theme/assets/logo.png +0 -0
- package/test-theme/assets/sections.css +48 -0
- package/test-theme/assets/theme.css +3500 -0
- package/test-theme/assets/theme.js +3745 -0
- package/test-theme/config/settings_data.json +292 -0
- package/test-theme/config/settings_schema.json +1050 -0
- package/test-theme/layout/theme.liquid +195 -0
- package/test-theme/locales/en.default.json +260 -0
- package/test-theme/sections/content-fallback.liquid +53 -0
- package/test-theme/sections/content.liquid +57 -0
- package/test-theme/sections/footer-fallback.liquid +328 -0
- package/test-theme/sections/footer.liquid +278 -0
- package/test-theme/sections/header-fallback.liquid +1805 -0
- package/test-theme/sections/header.liquid +1145 -0
- package/test-theme/sections/hero-fallback.liquid +212 -0
- package/test-theme/sections/hero.liquid +136 -0
- package/test-theme/snippets/account-sidebar.liquid +200 -0
- package/test-theme/snippets/add-to-cart-modal.liquid +484 -0
- package/test-theme/snippets/breadcrumbs.liquid +134 -0
- package/test-theme/snippets/cart-drawer.liquid +467 -0
- package/test-theme/snippets/delivery-zone-city-selector.liquid +79 -0
- package/test-theme/snippets/delivery-zone-modal.liquid +337 -0
- package/test-theme/snippets/delivery-zone-search.liquid +78 -0
- package/test-theme/snippets/icon.liquid +105 -0
- package/test-theme/snippets/login-modal.liquid +346 -0
- package/test-theme/snippets/mega-menu.liquid +812 -0
- package/test-theme/snippets/news-thumbnail.liquid +187 -0
- package/test-theme/snippets/pagination.liquid +120 -0
- package/test-theme/snippets/price.liquid +92 -0
- package/test-theme/snippets/product-card-related.liquid +78 -0
- package/test-theme/snippets/product-card-simple.liquid +41 -0
- package/test-theme/snippets/product-card.liquid +697 -0
- package/test-theme/snippets/rating.liquid +85 -0
- package/test-theme/snippets/skeleton-collection-grid.liquid +114 -0
- package/test-theme/snippets/skeleton-product-card.liquid +124 -0
- package/test-theme/snippets/skeleton-product-grid.liquid +34 -0
- package/test-theme/snippets/social-sharing.liquid +185 -0
- package/test-theme/templates/account/dashboard.liquid +401 -0
- package/test-theme/templates/account/loyalty-redemption.liquid +405 -0
- package/test-theme/templates/account/loyalty.liquid +588 -0
- package/test-theme/templates/account/order-detail.liquid +230 -0
- package/test-theme/templates/account/orders.liquid +349 -0
- package/test-theme/templates/account/profile.liquid +758 -0
- package/test-theme/templates/account/register.liquid +232 -0
- package/test-theme/templates/account/return-orders.liquid +348 -0
- package/test-theme/templates/account/store-credit.liquid +464 -0
- package/test-theme/templates/account/subscriptions.liquid +601 -0
- package/test-theme/templates/account/wishlist.liquid +419 -0
- package/test-theme/templates/address-book.liquid +1092 -0
- package/test-theme/templates/categories.liquid +452 -0
- package/test-theme/templates/checkout.liquid +4511 -0
- package/test-theme/templates/error.liquid +384 -0
- package/test-theme/templates/index.liquid +11 -0
- package/test-theme/templates/login.liquid +185 -0
- package/test-theme/templates/order-confirmation.liquid +720 -0
- package/test-theme/templates/page.liquid +297 -0
- package/test-theme/templates/product-detail.liquid +4363 -0
- package/test-theme/templates/products.liquid +518 -0
- package/test-theme/templates/search.liquid +922 -0
- package/test-theme/theme.json.example +19 -0
- package/test-theme/widgets/brand-carousel.liquid +676 -0
- package/test-theme/widgets/brand.liquid +245 -0
- package/test-theme/widgets/carousel.liquid +843 -0
- package/test-theme/widgets/category-list-carousel.liquid +656 -0
- package/test-theme/widgets/category-list.liquid +340 -0
- package/test-theme/widgets/category.liquid +475 -0
- package/test-theme/widgets/discount-time.liquid +176 -0
- package/test-theme/widgets/footer-menu.liquid +695 -0
- package/test-theme/widgets/footer.liquid +179 -0
- package/test-theme/widgets/gallery.liquid +271 -0
- package/test-theme/widgets/header-menu.liquid +932 -0
- package/test-theme/widgets/header.liquid +159 -0
- package/test-theme/widgets/html.liquid +214 -0
- package/test-theme/widgets/news.liquid +217 -0
- package/test-theme/widgets/product-canvas.liquid +235 -0
- package/test-theme/widgets/product-carousel.liquid +502 -0
- package/test-theme/widgets/product.liquid +45 -0
- package/test-theme/widgets/recently-viewed.liquid +26 -0
- package/test-theme/widgets/shared/product-grid.liquid +339 -0
- package/test-theme/widgets/simple-product.liquid +42 -0
- package/test-theme/widgets/single-product.liquid +610 -0
- package/test-theme/widgets/spacebar-carousel.liquid +663 -0
- package/test-theme/widgets/spacebar.liquid +279 -0
- package/test-theme/widgets/splash.liquid +378 -0
- package/test-theme/widgets/testimonial-carousel.liquid +709 -0
|
@@ -0,0 +1,292 @@
|
|
|
1
|
+
{
|
|
2
|
+
"current": {
|
|
3
|
+
"color_primary": "#111",
|
|
4
|
+
"color_primary_light": "#6aa84f",
|
|
5
|
+
"color_primary_dark": "#0f0f0f",
|
|
6
|
+
"color_secondary": "#64748b",
|
|
7
|
+
"color_accent": "#111",
|
|
8
|
+
"color_accent_light": "#a78bfa",
|
|
9
|
+
"color_accent_dark": "#7c3aed",
|
|
10
|
+
"color_background": "#ffffff",
|
|
11
|
+
"color_surface": "#fafafa",
|
|
12
|
+
"color_border": "#e5e7eb",
|
|
13
|
+
"color_text": "#111",
|
|
14
|
+
"color_text_light": "#9ca3af",
|
|
15
|
+
"color_text_muted": "#6b7280",
|
|
16
|
+
"color_success": "#059669",
|
|
17
|
+
"color_error": "#dc2626",
|
|
18
|
+
"color_warning": "#d97706",
|
|
19
|
+
"color_info": "#0284c7",
|
|
20
|
+
"font_heading": "Inter",
|
|
21
|
+
"font_body": "Inter",
|
|
22
|
+
"font_primary": "Inter",
|
|
23
|
+
"font_display": "Playfair Display",
|
|
24
|
+
"font_mono": "SF Mono",
|
|
25
|
+
"font_size_base": 14,
|
|
26
|
+
"font_size_heading": 32,
|
|
27
|
+
"font_size_heading_scale": 1.25,
|
|
28
|
+
"font_weight_normal": "400",
|
|
29
|
+
"font_weight_medium": "500",
|
|
30
|
+
"font_weight_bold": "700",
|
|
31
|
+
"line_height_base": 1.6,
|
|
32
|
+
"line_height_heading": 1.2,
|
|
33
|
+
"letter_spacing_heading": -0.02,
|
|
34
|
+
"letter_spacing_uppercase": 0.05,
|
|
35
|
+
"container_width": 1400,
|
|
36
|
+
"container_padding": 24,
|
|
37
|
+
"spacing_section": 80,
|
|
38
|
+
"spacing_large": 32,
|
|
39
|
+
"spacing_component": 24,
|
|
40
|
+
"spacing_element": 16,
|
|
41
|
+
"spacing_small": 8,
|
|
42
|
+
"spacing_xsmall": 4,
|
|
43
|
+
"layout_style": "boxed",
|
|
44
|
+
"enable_asymmetric_grid": true,
|
|
45
|
+
"border_radius_small": 6,
|
|
46
|
+
"border_radius_medium": 10,
|
|
47
|
+
"border_radius_large": 16,
|
|
48
|
+
"logo": null,
|
|
49
|
+
"logo_width": 150,
|
|
50
|
+
"show_search": true,
|
|
51
|
+
"show_cart_icon": true,
|
|
52
|
+
"menu": "main-menu",
|
|
53
|
+
"footer_text": "© 2026 Your Store Name. All rights reserved.",
|
|
54
|
+
"footer_menu": null,
|
|
55
|
+
"show_newsletter": false,
|
|
56
|
+
"show_social_links": true,
|
|
57
|
+
"social_facebook": null,
|
|
58
|
+
"social_instagram": null,
|
|
59
|
+
"social_twitter": null,
|
|
60
|
+
"social_youtube": null,
|
|
61
|
+
"social_pinterest": null,
|
|
62
|
+
"products_per_page": 24,
|
|
63
|
+
"product_image_ratio": "square",
|
|
64
|
+
"show_vendor": true,
|
|
65
|
+
"show_sku": false,
|
|
66
|
+
"cart_type": "drawer",
|
|
67
|
+
"show_continue_shopping": true,
|
|
68
|
+
"show_notes": true,
|
|
69
|
+
"enable_animations": true,
|
|
70
|
+
"animation_speed": "normal",
|
|
71
|
+
"enable_parallax": false,
|
|
72
|
+
"enable_hover_effects": true,
|
|
73
|
+
"enable_fade_in": true,
|
|
74
|
+
"enable_stagger_animation": true,
|
|
75
|
+
"shadow_opacity": 0.1,
|
|
76
|
+
"shadow_blur": 8,
|
|
77
|
+
"shadow_spread": 0,
|
|
78
|
+
"depth_level_1": 1,
|
|
79
|
+
"depth_level_2": 4,
|
|
80
|
+
"depth_level_3": 8,
|
|
81
|
+
"button_style": "modern",
|
|
82
|
+
"button_padding_vertical": 12,
|
|
83
|
+
"button_padding_tal": 24,
|
|
84
|
+
"button_hover_lift": true,
|
|
85
|
+
"button_ripple_effect": false,
|
|
86
|
+
"button_transition_speed": 200,
|
|
87
|
+
"lazy_load_images": true,
|
|
88
|
+
"preload_critical_css": true,
|
|
89
|
+
"optimize_animations": true,
|
|
90
|
+
"show_loading_skeletons": true,
|
|
91
|
+
"loading_animation": "spinner",
|
|
92
|
+
"enable_widgets": true,
|
|
93
|
+
"widget_fallback_enabled": true,
|
|
94
|
+
"widget_cache_ttl": 300,
|
|
95
|
+
"sections_use_widgets_by_default": false,
|
|
96
|
+
"default_widget_section": "content"
|
|
97
|
+
},
|
|
98
|
+
"presets": {
|
|
99
|
+
"default": {
|
|
100
|
+
"color_primary": "#2563eb",
|
|
101
|
+
"color_primary_light": "#2d2d2d",
|
|
102
|
+
"color_primary_dark": "#0f0f0f",
|
|
103
|
+
"color_secondary": "#64748b",
|
|
104
|
+
"color_accent": "#f59e0b",
|
|
105
|
+
"color_accent_light": "#a78bfa",
|
|
106
|
+
"color_accent_dark": "#7c3aed",
|
|
107
|
+
"color_background": "#ffffff",
|
|
108
|
+
"color_surface": "#fafafa",
|
|
109
|
+
"color_border": "#e5e7eb",
|
|
110
|
+
"color_text": "#111",
|
|
111
|
+
"color_text_light": "#9ca3af",
|
|
112
|
+
"color_text_muted": "#6b7280",
|
|
113
|
+
"color_success": "#059669",
|
|
114
|
+
"color_error": "#dc2626",
|
|
115
|
+
"color_warning": "#d97706",
|
|
116
|
+
"color_info": "#0284c7",
|
|
117
|
+
"font_heading": "Inter",
|
|
118
|
+
"font_body": "Inter",
|
|
119
|
+
"font_primary": "Inter",
|
|
120
|
+
"font_display": "Playfair Display",
|
|
121
|
+
"font_mono": "SF Mono",
|
|
122
|
+
"font_size_base": 14,
|
|
123
|
+
"font_size_heading": 32,
|
|
124
|
+
"font_size_heading_scale": 1.25,
|
|
125
|
+
"font_weight_normal": "400",
|
|
126
|
+
"font_weight_medium": "500",
|
|
127
|
+
"font_weight_bold": "700",
|
|
128
|
+
"line_height_base": 1.6,
|
|
129
|
+
"line_height_heading": 1.2,
|
|
130
|
+
"letter_spacing_heading": -0.03,
|
|
131
|
+
"letter_spacing_uppercase": 0.05,
|
|
132
|
+
"container_width": 1400,
|
|
133
|
+
"container_padding": 24,
|
|
134
|
+
"spacing_section": 80,
|
|
135
|
+
"spacing_large": 32,
|
|
136
|
+
"spacing_component": 24,
|
|
137
|
+
"spacing_element": 16,
|
|
138
|
+
"spacing_small": 8,
|
|
139
|
+
"spacing_xsmall": 4,
|
|
140
|
+
"layout_style": "boxed",
|
|
141
|
+
"enable_asymmetric_grid": true,
|
|
142
|
+
"border_radius_small": 6,
|
|
143
|
+
"border_radius_medium": 10,
|
|
144
|
+
"border_radius_large": 16,
|
|
145
|
+
"logo": null,
|
|
146
|
+
"logo_width": 150,
|
|
147
|
+
"show_search": true,
|
|
148
|
+
"show_cart_icon": true,
|
|
149
|
+
"menu": "main-menu",
|
|
150
|
+
"footer_text": "© 2024 Your Store Name. All rights reserved.",
|
|
151
|
+
"footer_menu": null,
|
|
152
|
+
"show_newsletter": true,
|
|
153
|
+
"show_social_links": true,
|
|
154
|
+
"social_facebook": null,
|
|
155
|
+
"social_instagram": null,
|
|
156
|
+
"social_twitter": null,
|
|
157
|
+
"social_youtube": null,
|
|
158
|
+
"social_pinterest": null,
|
|
159
|
+
"products_per_page": 24,
|
|
160
|
+
"product_image_ratio": "square",
|
|
161
|
+
"show_vendor": true,
|
|
162
|
+
"show_sku": false,
|
|
163
|
+
"cart_type": "drawer",
|
|
164
|
+
"show_continue_shopping": true,
|
|
165
|
+
"show_notes": true,
|
|
166
|
+
"enable_animations": true,
|
|
167
|
+
"animation_speed": "normal",
|
|
168
|
+
"enable_parallax": false,
|
|
169
|
+
"enable_hover_effects": true,
|
|
170
|
+
"enable_fade_in": true,
|
|
171
|
+
"enable_stagger_animation": true,
|
|
172
|
+
"shadow_opacity": 0.1,
|
|
173
|
+
"shadow_blur": 8,
|
|
174
|
+
"shadow_spread": 0,
|
|
175
|
+
"depth_level_1": 1,
|
|
176
|
+
"depth_level_2": 4,
|
|
177
|
+
"depth_level_3": 8,
|
|
178
|
+
"button_style": "modern",
|
|
179
|
+
"button_padding_vertical": 12,
|
|
180
|
+
"button_padding_tal": 24,
|
|
181
|
+
"button_hover_lift": true,
|
|
182
|
+
"button_ripple_effect": false,
|
|
183
|
+
"button_transition_speed": 200,
|
|
184
|
+
"lazy_load_images": true,
|
|
185
|
+
"preload_critical_css": true,
|
|
186
|
+
"optimize_animations": true,
|
|
187
|
+
"show_loading_skeletons": true,
|
|
188
|
+
"loading_animation": "spinner",
|
|
189
|
+
"enable_widgets": true,
|
|
190
|
+
"widget_fallback_enabled": true,
|
|
191
|
+
"widget_cache_ttl": 300,
|
|
192
|
+
"sections_use_widgets_by_default": false,
|
|
193
|
+
"default_widget_section": "content"
|
|
194
|
+
},
|
|
195
|
+
"LightSun": {
|
|
196
|
+
"color_primary": "#2563eb",
|
|
197
|
+
"color_primary_light": "#2d2d2d",
|
|
198
|
+
"color_primary_dark": "#0f0f0f",
|
|
199
|
+
"color_secondary": "#64748b",
|
|
200
|
+
"color_accent": "#f59e0b",
|
|
201
|
+
"color_accent_light": "#a78bfa",
|
|
202
|
+
"color_accent_dark": "#7c3aed",
|
|
203
|
+
"color_background": "#ffffff",
|
|
204
|
+
"color_surface": "#fafafa",
|
|
205
|
+
"color_border": "#e5e7eb",
|
|
206
|
+
"color_text": "#111",
|
|
207
|
+
"color_text_light": "#9ca3af",
|
|
208
|
+
"color_text_muted": "#6b7280",
|
|
209
|
+
"color_success": "#059669",
|
|
210
|
+
"color_error": "#dc2626",
|
|
211
|
+
"color_warning": "#d97706",
|
|
212
|
+
"color_info": "#0284c7",
|
|
213
|
+
"font_heading": "Inter",
|
|
214
|
+
"font_body": "Inter",
|
|
215
|
+
"font_primary": "Inter",
|
|
216
|
+
"font_display": "Playfair Display",
|
|
217
|
+
"font_mono": "SF Mono",
|
|
218
|
+
"font_size_base": 14,
|
|
219
|
+
"font_size_heading": 32,
|
|
220
|
+
"font_size_heading_scale": 1.25,
|
|
221
|
+
"font_weight_normal": "400",
|
|
222
|
+
"font_weight_medium": "500",
|
|
223
|
+
"font_weight_bold": "700",
|
|
224
|
+
"line_height_base": 1.6,
|
|
225
|
+
"line_height_heading": 1.2,
|
|
226
|
+
"letter_spacing_heading": -0.03,
|
|
227
|
+
"letter_spacing_uppercase": 0.05,
|
|
228
|
+
"container_width": 1400,
|
|
229
|
+
"container_padding": 24,
|
|
230
|
+
"spacing_section": 80,
|
|
231
|
+
"spacing_large": 32,
|
|
232
|
+
"spacing_component": 24,
|
|
233
|
+
"spacing_element": 16,
|
|
234
|
+
"spacing_small": 8,
|
|
235
|
+
"spacing_xsmall": 4,
|
|
236
|
+
"layout_style": "boxed",
|
|
237
|
+
"enable_asymmetric_grid": true,
|
|
238
|
+
"border_radius_small": 6,
|
|
239
|
+
"border_radius_medium": 10,
|
|
240
|
+
"border_radius_large": 16,
|
|
241
|
+
"logo": null,
|
|
242
|
+
"logo_width": 150,
|
|
243
|
+
"show_search": true,
|
|
244
|
+
"show_cart_icon": true,
|
|
245
|
+
"menu": "main-menu",
|
|
246
|
+
"footer_text": "© 2024 Your Store Name. All rights reserved.",
|
|
247
|
+
"footer_menu": null,
|
|
248
|
+
"show_newsletter": true,
|
|
249
|
+
"show_social_links": true,
|
|
250
|
+
"social_facebook": null,
|
|
251
|
+
"social_instagram": null,
|
|
252
|
+
"social_twitter": null,
|
|
253
|
+
"social_youtube": null,
|
|
254
|
+
"social_pinterest": null,
|
|
255
|
+
"products_per_page": 24,
|
|
256
|
+
"product_image_ratio": "square",
|
|
257
|
+
"show_vendor": true,
|
|
258
|
+
"show_sku": false,
|
|
259
|
+
"cart_type": "drawer",
|
|
260
|
+
"show_continue_shopping": true,
|
|
261
|
+
"show_notes": true,
|
|
262
|
+
"enable_animations": true,
|
|
263
|
+
"animation_speed": "normal",
|
|
264
|
+
"enable_parallax": false,
|
|
265
|
+
"enable_hover_effects": true,
|
|
266
|
+
"enable_fade_in": true,
|
|
267
|
+
"enable_stagger_animation": true,
|
|
268
|
+
"shadow_opacity": 0.1,
|
|
269
|
+
"shadow_blur": 8,
|
|
270
|
+
"shadow_spread": 0,
|
|
271
|
+
"depth_level_1": 1,
|
|
272
|
+
"depth_level_2": 4,
|
|
273
|
+
"depth_level_3": 8,
|
|
274
|
+
"button_style": "modern",
|
|
275
|
+
"button_padding_vertical": 12,
|
|
276
|
+
"button_padding_tal": 24,
|
|
277
|
+
"button_hover_lift": true,
|
|
278
|
+
"button_ripple_effect": false,
|
|
279
|
+
"button_transition_speed": 200,
|
|
280
|
+
"lazy_load_images": true,
|
|
281
|
+
"preload_critical_css": true,
|
|
282
|
+
"optimize_animations": true,
|
|
283
|
+
"show_loading_skeletons": true,
|
|
284
|
+
"loading_animation": "spinner",
|
|
285
|
+
"enable_widgets": true,
|
|
286
|
+
"widget_fallback_enabled": true,
|
|
287
|
+
"widget_cache_ttl": 300,
|
|
288
|
+
"sections_use_widgets_by_default": false,
|
|
289
|
+
"default_widget_section": "content"
|
|
290
|
+
}
|
|
291
|
+
}
|
|
292
|
+
}
|