easyorders 0.1.14 → 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.
Files changed (51) hide show
  1. package/README.md +93 -93
  2. package/dist/bin/cli.js +12 -5
  3. package/dist/template/theme/config.json +113 -95
  4. package/dist/template/theme/home-sections/Tilted-Scrolling-Marque/config.json +107 -0
  5. package/dist/template/theme/home-sections/Tilted-Scrolling-Marque/template.liquid +171 -0
  6. package/dist/template/theme/home-sections/category-mosaic/config.json +89 -4
  7. package/dist/template/theme/home-sections/category-mosaic/template.liquid +84 -69
  8. package/dist/template/theme/home-sections/different-hero/config.json +199 -0
  9. package/dist/template/theme/home-sections/different-hero/template.liquid +219 -0
  10. package/dist/template/theme/home-sections/editorial-feature/config.json +27 -1
  11. package/dist/template/theme/home-sections/editorial-feature/template.liquid +11 -10
  12. package/dist/template/theme/home-sections/newsletter-luxe/config.json +28 -2
  13. package/dist/template/theme/home-sections/newsletter-luxe/template.liquid +19 -13
  14. package/dist/template/theme/home-sections/runway-hero/config.json +87 -30
  15. package/dist/template/theme/home-sections/runway-hero/template.liquid +59 -29
  16. package/dist/template/theme/home-sections/shop-the-look/config.json +93 -1
  17. package/dist/template/theme/home-sections/shop-the-look/template.liquid +41 -19
  18. package/dist/template/theme/home-sections/slider-before-after/config.json +213 -0
  19. package/dist/template/theme/home-sections/slider-before-after/template.liquid +336 -0
  20. package/dist/template/theme/home-sections/test-hero-allbird/config.json +130 -0
  21. package/dist/template/theme/home-sections/test-hero-allbird/template.liquid +149 -0
  22. package/dist/template/theme/home-sections/trust-promise/config.json +76 -2
  23. package/dist/template/theme/home-sections/trust-promise/template.liquid +119 -96
  24. package/dist/template/theme/home-sections/zoom-parallax/config.json +48 -0
  25. package/dist/template/theme/home-sections/zoom-parallax/template.liquid +135 -0
  26. package/dist/template/theme/product-data-schema.json +27 -0
  27. package/dist/template/theme/schema.json +136 -151
  28. package/dist/template/theme/script.js +1095 -586
  29. package/dist/template/theme/sections/breadcrumbs.liquid +17 -17
  30. package/dist/template/theme/sections/categories.liquid +26 -10
  31. package/dist/template/theme/sections/fake-counter.liquid +27 -27
  32. package/dist/template/theme/sections/fake-stock.liquid +6 -6
  33. package/dist/template/theme/sections/fake-visitor.liquid +6 -6
  34. package/dist/template/theme/sections/featured-products.liquid +143 -110
  35. package/dist/template/theme/sections/fixed-buy-button.liquid +51 -46
  36. package/dist/template/theme/sections/footer.liquid +128 -129
  37. package/dist/template/theme/sections/gallery.liquid +65 -61
  38. package/dist/template/theme/sections/header.liquid +232 -152
  39. package/dist/template/theme/sections/home-products-grid.liquid +167 -109
  40. package/dist/template/theme/sections/list-products.liquid +136 -93
  41. package/dist/template/theme/sections/order-invoice.liquid +102 -154
  42. package/dist/template/theme/sections/product-description.liquid +40 -30
  43. package/dist/template/theme/sections/product-details.liquid +48 -63
  44. package/dist/template/theme/sections/products-grid.liquid +134 -86
  45. package/dist/template/theme/sections/related-products.liquid +152 -88
  46. package/dist/template/theme/sections/reviews.liquid +70 -55
  47. package/dist/template/theme/sections/slider.liquid +43 -43
  48. package/dist/template/theme/sections/thanks.liquid +33 -33
  49. package/dist/template/theme/style.css +5617 -3923
  50. package/dist/template/theme/theme-data.json +26 -9
  51. package/package.json +40 -40
@@ -1,151 +1,136 @@
1
- [
2
- {
3
- "name": "hero_headline",
4
- "type": "string",
5
- "default": "Welcome to Our Store",
6
- "description": "Hero headline text"
7
- },
8
- {
9
- "name": "font_size_base",
10
- "type": "number",
11
- "default": 16,
12
- "description": "Base font size in px"
13
- },
14
- {
15
- "name": "color_primary",
16
- "type": "color",
17
- "default": "#1A1A2E",
18
- "description": "Primary brand color"
19
- },
20
- {
21
- "name": "hero_show_overlay",
22
- "type": "boolean",
23
- "default": true,
24
- "description": "Show dark overlay on hero image"
25
- },
26
- {
27
- "name": "color_scheme",
28
- "type": "select",
29
- "default": "light",
30
- "options": [
31
- {
32
- "label": "Light",
33
- "value": "light"
34
- },
35
- {
36
- "label": "Dark",
37
- "value": "dark"
38
- },
39
- {
40
- "label": "System default",
41
- "value": "system"
42
- }
43
- ],
44
- "description": "Base color scheme"
45
- },
46
- {
47
- "name": "product_badge_types",
48
- "type": "multi_select",
49
- "default": ["sale", "new"],
50
- "options": [
51
- {
52
- "label": "Sale",
53
- "value": "sale"
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"
73
- },
74
- {
75
- "name": "hero_slides",
76
- "type": "object_array",
77
- "fields": [
78
- {
79
- "name": "image",
80
- "type": "image",
81
- "default": "",
82
- "description": "Slide background image"
83
- },
84
- {
85
- "name": "title",
86
- "type": "string",
87
- "default": "",
88
- "description": "Slide headline"
89
- },
90
- {
91
- "name": "overlay_opacity",
92
- "type": "number",
93
- "default": 40,
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"
150
- }
151
- ]
1
+ [
2
+ {
3
+ "name": "show_sale_badge",
4
+ "type": "checkbox",
5
+ "default": true,
6
+ "group": "Products",
7
+ "description": "Show sale badge on product cards"
8
+ },
9
+ {
10
+ "name": "sale_badge_bg_color",
11
+ "type": "color",
12
+ "default": "#c94a4a",
13
+ "group": "Products",
14
+ "description": "Sale badge background"
15
+ },
16
+ {
17
+ "name": "sale_badge_text_color",
18
+ "type": "color",
19
+ "default": "#ffffff",
20
+ "group": "Products",
21
+ "description": "Sale badge text"
22
+ },
23
+ {
24
+ "name": "card_background_product",
25
+ "type": "select",
26
+ "default": "color",
27
+ "group": "Products",
28
+ "description": "Card background product",
29
+ "options": [
30
+ {
31
+ "label": "Color background",
32
+ "value": "color"
33
+ },
34
+ {
35
+ "label": "Transparent",
36
+ "value": "transparent"
37
+ }
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"
80
+ },
81
+ {
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",
108
+ "options": [
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
+ ]
114
+ },
115
+ {
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"
135
+ }
136
+ ]