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.
Files changed (43) hide show
  1. package/dist/template/theme/config.json +45 -27
  2. package/dist/template/theme/home-sections/Tilted-Scrolling-Marque/config.json +107 -0
  3. package/dist/template/theme/home-sections/Tilted-Scrolling-Marque/template.liquid +171 -0
  4. package/dist/template/theme/home-sections/category-mosaic/config.json +125 -40
  5. package/dist/template/theme/home-sections/category-mosaic/template.liquid +170 -155
  6. package/dist/template/theme/home-sections/different-hero/config.json +199 -0
  7. package/dist/template/theme/home-sections/different-hero/template.liquid +219 -0
  8. package/dist/template/theme/home-sections/editorial-feature/config.json +93 -67
  9. package/dist/template/theme/home-sections/editorial-feature/template.liquid +154 -153
  10. package/dist/template/theme/home-sections/newsletter-luxe/config.json +86 -60
  11. package/dist/template/theme/home-sections/newsletter-luxe/template.liquid +150 -144
  12. package/dist/template/theme/home-sections/runway-hero/config.json +148 -91
  13. package/dist/template/theme/home-sections/runway-hero/template.liquid +189 -159
  14. package/dist/template/theme/home-sections/shop-the-look/config.json +167 -75
  15. package/dist/template/theme/home-sections/shop-the-look/template.liquid +326 -304
  16. package/dist/template/theme/home-sections/slider-before-after/config.json +213 -0
  17. package/dist/template/theme/home-sections/slider-before-after/template.liquid +336 -0
  18. package/dist/template/theme/home-sections/test-hero-allbird/config.json +130 -0
  19. package/dist/template/theme/home-sections/test-hero-allbird/template.liquid +149 -0
  20. package/dist/template/theme/home-sections/trust-promise/config.json +121 -47
  21. package/dist/template/theme/home-sections/trust-promise/template.liquid +34 -11
  22. package/dist/template/theme/home-sections/zoom-parallax/config.json +48 -0
  23. package/dist/template/theme/home-sections/zoom-parallax/template.liquid +135 -0
  24. package/dist/template/theme/product-data-schema.json +27 -0
  25. package/dist/template/theme/schema.json +114 -129
  26. package/dist/template/theme/script.js +694 -185
  27. package/dist/template/theme/sections/categories.liquid +20 -4
  28. package/dist/template/theme/sections/featured-products.liquid +65 -32
  29. package/dist/template/theme/sections/fixed-buy-button.liquid +6 -1
  30. package/dist/template/theme/sections/footer.liquid +90 -91
  31. package/dist/template/theme/sections/gallery.liquid +37 -33
  32. package/dist/template/theme/sections/header.liquid +105 -25
  33. package/dist/template/theme/sections/home-products-grid.liquid +68 -10
  34. package/dist/template/theme/sections/list-products.liquid +73 -30
  35. package/dist/template/theme/sections/order-invoice.liquid +39 -91
  36. package/dist/template/theme/sections/product-description.liquid +18 -8
  37. package/dist/template/theme/sections/product-details.liquid +9 -24
  38. package/dist/template/theme/sections/products-grid.liquid +102 -54
  39. package/dist/template/theme/sections/related-products.liquid +124 -60
  40. package/dist/template/theme/sections/reviews.liquid +43 -28
  41. package/dist/template/theme/style.css +2283 -589
  42. package/dist/template/theme/theme-data.json +25 -8
  43. package/package.json +1 -1
@@ -1,144 +1,150 @@
1
- <section
2
- class="newsletter-luxe"
3
- style="
4
- background: {{ section_data.bg_color | default: '#1A1814' }};
5
- color: {{ section_data.text_color | default: '#F4EEE6' }};
6
- --nl-btn: {{ section_data.button_color | default: '#C9A962' }};
7
- "
8
- >
9
- <div class="newsletter-luxe__inner">
10
- {% if section_data.headline != blank %}
11
- <h2 class="newsletter-luxe__title">{{ section_data.headline }}</h2>
12
- {% endif %}
13
- {% if section_data.body != blank %}
14
- <p class="newsletter-luxe__body">{{ section_data.body }}</p>
15
- {% endif %}
16
-
17
- <form
18
- class="newsletter-luxe__form"
19
- novalidate
20
- onsubmit="
21
- event.preventDefault();
22
- if (!this.checkValidity()) {
23
- this.reportValidity();
24
- return;
25
- }
26
- var input = this.elements.email;
27
- var email = input && input.value ? String(input.value).trim() : '';
28
- this.dispatchEvent(
29
- new CustomEvent('footer-subscribe', {
30
- bubbles: true,
31
- detail: { email: email }
32
- })
33
- );
34
- this.reset();
35
- "
36
- >
37
- <input
38
- class="newsletter-luxe__input"
39
- type="email"
40
- name="email"
41
- autocomplete="email"
42
- inputmode="email"
43
- maxlength="254"
44
- pattern="[^@\s]+@[^@\s]+\.[^@\s]+"
45
- title="Valid email required"
46
- required
47
- aria-required="true"
48
- aria-label="{{ section_data.placeholder | default: 'Email address' }}"
49
- placeholder="{{ section_data.placeholder | default: 'Email address' }}"
50
- />
51
- <button class="newsletter-luxe__submit" type="submit">
52
- {{ section_data.button_label | default: 'Join the list' }}
53
- </button>
54
- </form>
55
-
56
- {% if section_data.show_footnote and section_data.footnote != blank %}
57
- <p class="newsletter-luxe__fine">{{ section_data.footnote }}</p>
58
- {% endif %}
59
- </div>
60
- </section>
61
-
62
- <style>
63
- .newsletter-luxe {
64
- padding: clamp(2.75rem, 6vw, 4rem) 1.25rem;
65
- }
66
- .newsletter-luxe__inner {
67
- max-width: 520px;
68
- margin: 0 auto;
69
- text-align: center;
70
- display: flex;
71
- flex-direction: column;
72
- gap: 1.25rem;
73
- }
74
- .newsletter-luxe__title {
75
- margin: 0;
76
- font-family: ui-serif, Georgia, Cambria, 'Times New Roman', Times, serif;
77
- font-weight: 500;
78
- font-size: clamp(1.65rem, 4vw, 2.1rem);
79
- line-height: 1.2;
80
- }
81
- .newsletter-luxe__body {
82
- margin: 0;
83
- font-size: 1rem;
84
- line-height: 1.65;
85
- opacity: 0.88;
86
- }
87
- .newsletter-luxe__form {
88
- display: flex;
89
- flex-wrap: wrap;
90
- gap: 0.6rem;
91
- justify-content: center;
92
- margin-top: 0.25rem;
93
- }
94
- @media (min-width: 520px) {
95
- .newsletter-luxe__form {
96
- flex-wrap: nowrap;
97
- }
98
- }
99
- .newsletter-luxe__input {
100
- flex: 1 1 200px;
101
- min-width: 0;
102
- padding: 0.9rem 1.1rem;
103
- border-radius: 999px;
104
- border: 1px solid rgba(255, 255, 255, 0.18);
105
- background: rgba(255, 255, 255, 0.06);
106
- color: inherit;
107
- font-size: 0.95rem;
108
- outline: none;
109
- transition: border-color 0.2s ease, background 0.2s ease;
110
- }
111
- .newsletter-luxe__input::placeholder {
112
- color: rgba(244, 238, 230, 0.45);
113
- }
114
- .newsletter-luxe__input:focus {
115
- border-color: var(--nl-btn, #c9a962);
116
- background: rgba(255, 255, 255, 0.09);
117
- }
118
- .newsletter-luxe__submit {
119
- flex-shrink: 0;
120
- padding: 0.9rem 1.5rem;
121
- border-radius: 999px;
122
- border: none;
123
- cursor: pointer;
124
- font-size: 0.78rem;
125
- font-weight: 700;
126
- letter-spacing: 0.14em;
127
- text-transform: uppercase;
128
- background: var(--nl-btn, #c9a962);
129
- color: #141218;
130
- transition: transform 0.2s ease, box-shadow 0.2s ease;
131
- }
132
- .newsletter-luxe__submit:hover {
133
- transform: translateY(-1px);
134
- box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
135
- }
136
- .newsletter-luxe__fine {
137
- margin: 0;
138
- font-size: 0.72rem;
139
- line-height: 1.5;
140
- opacity: 0.55;
141
- max-width: 36rem;
142
- margin-inline: auto;
143
- }
144
- </style>
1
+ <section
2
+ class="eo-home-section newsletter-luxe"
3
+ {% if section_data.enable_animation != false %}data-section-anim="{{ section_data.animation_style | default: 'fade-up' }}"{% endif %}
4
+ style="
5
+ background: {{ section_data.bg_color | default: '#1A1814' }};
6
+ color: {{ section_data.text_color | default: '#F4EEE6' }};
7
+ --nl-btn: {{ section_data.button_color | default: '#C9A962' }};
8
+ --nl-btn-text: {{ section_data.button_text_color | default: '#141218' }};
9
+ "
10
+ >
11
+ <div class="newsletter-luxe__inner">
12
+ {% if section_data.headline != blank %}
13
+ <h2 class="newsletter-luxe__title ab-anim-el">{{ section_data.headline }}</h2>
14
+ {% endif %}
15
+ {% if section_data.body != blank %}
16
+ <p class="newsletter-luxe__body ab-anim-el">{{ section_data.body }}</p>
17
+ {% endif %}
18
+
19
+ <form
20
+ class="newsletter-luxe__form ab-anim-el"
21
+ novalidate
22
+ onsubmit="
23
+ event.preventDefault();
24
+ if (!this.checkValidity()) {
25
+ this.reportValidity();
26
+ return;
27
+ }
28
+ var input = this.elements.email;
29
+ var email = input && input.value ? String(input.value).trim() : '';
30
+ this.dispatchEvent(
31
+ new CustomEvent('footer-subscribe', {
32
+ bubbles: true,
33
+ detail: { email: email }
34
+ })
35
+ );
36
+ this.reset();
37
+ "
38
+ >
39
+ <input
40
+ class="newsletter-luxe__input"
41
+ type="email"
42
+ name="email"
43
+ autocomplete="email"
44
+ inputmode="email"
45
+ maxlength="254"
46
+ pattern="[^@\s]+@[^@\s]+\.[^@\s]+"
47
+ title="Valid email required"
48
+ required
49
+ aria-required="true"
50
+ aria-label="{{ section_data.placeholder | default: 'Email address' }}"
51
+ placeholder="{{ section_data.placeholder | default: 'Email address' }}"
52
+ />
53
+ <button class="newsletter-luxe__submit" type="submit">
54
+ {{ section_data.button_label | default: 'Join the list' }}
55
+ </button>
56
+ </form>
57
+
58
+ {% if section_data.show_footnote and section_data.footnote != blank %}
59
+ <p class="newsletter-luxe__fine ab-anim-el">{{ section_data.footnote }}</p>
60
+ {% endif %}
61
+ </div>
62
+ </section>
63
+
64
+ <style>
65
+ .newsletter-luxe {
66
+ padding: clamp(2.75rem, 6vw, 4rem) 1.25rem;margin-block: 15px;
67
+ }
68
+ .newsletter-luxe__inner {
69
+ max-width: 520px;
70
+ margin: 0 auto;
71
+ text-align: center;
72
+ display: flex;
73
+ flex-direction: column;
74
+ gap: 1.25rem;
75
+ }
76
+ .newsletter-luxe__title {
77
+ margin: 0;
78
+ font-family: ui-serif, Georgia, Cambria, 'Times New Roman', Times, serif;
79
+ font-weight: 500;
80
+ font-size: clamp(1.65rem, 4vw, 2.1rem);
81
+ line-height: 1.2;
82
+ }
83
+ .newsletter-luxe__body {
84
+ margin: 0;
85
+ font-size: 1rem;
86
+ line-height: 1.65;
87
+ opacity: 0.88;
88
+ }
89
+ .newsletter-luxe__form {
90
+ display: flex;
91
+ flex-wrap: wrap;
92
+ gap: 0.6rem;
93
+ justify-content: center;
94
+ margin-top: 0.25rem;
95
+ }
96
+ input.newsletter-luxe__input::placeholder {
97
+ color: inherit;
98
+ opacity: 0.5;
99
+ }
100
+ @media (min-width: 520px) {
101
+ .newsletter-luxe__form {
102
+ flex-wrap: nowrap;
103
+ }
104
+ }
105
+ .newsletter-luxe__input {
106
+ flex: 1 1 200px;
107
+ min-width: 0;
108
+ padding: 0.9rem 1.1rem;
109
+
110
+ border: 1px solid rgb(209 209 209 / 98%);
111
+ background: rgba(255, 255, 255, 0.06);
112
+ color: inherit;
113
+ font-size: 0.95rem;
114
+ outline: none;
115
+ transition: border-color 0.2s ease, background 0.2s ease;
116
+ }
117
+ .newsletter-luxe__input::placeholder {
118
+ color: rgba(244, 238, 230, 0.45);
119
+ }
120
+ .newsletter-luxe__input:focus {
121
+ border-color: var(--nl-btn, #313e61);
122
+ background: rgba(255, 255, 255, 0.09);
123
+ }
124
+ .newsletter-luxe__submit {
125
+ flex-shrink: 0;
126
+ padding: 0.9rem 1.5rem;
127
+
128
+ border: none;
129
+ cursor: pointer;
130
+ font-size: 0.78rem;
131
+ font-weight: 700;
132
+ letter-spacing: 0.14em;
133
+ text-transform: uppercase;
134
+ background: var(--nl-btn, #313e61);
135
+ color: var(--nl-btn-text, #141218);
136
+ transition: transform 0.2s ease, box-shadow 0.2s ease;
137
+ }
138
+ .newsletter-luxe__submit:hover {
139
+ transform: translateY(-1px);
140
+
141
+ }
142
+ .newsletter-luxe__fine {
143
+ margin: 0;
144
+ font-size: 0.72rem;
145
+ line-height: 1.5;
146
+ opacity: 0.55;
147
+ max-width: 36rem;
148
+ margin-inline: auto;
149
+ }
150
+ </style>
@@ -1,91 +1,148 @@
1
- {
2
- "icon": "https://api.iconify.design/lucide:sparkles.svg",
3
- "label": "Runway hero",
4
- "section_schema": [
5
- {
6
- "name": "image",
7
- "type": "image",
8
- "default": "",
9
- "description": "Full-width background image"
10
- },
11
- {
12
- "name": "kicker",
13
- "type": "string",
14
- "default": "New season",
15
- "description": "Small line above the headline"
16
- },
17
- {
18
- "name": "headline",
19
- "type": "string",
20
- "default": "The spring edit",
21
- "description": "Main headline"
22
- },
23
- {
24
- "name": "subheadline",
25
- "type": "string",
26
- "default": "Silhouettes, textures, and tones curated for everyday luxury.",
27
- "description": "Supporting line under the headline"
28
- },
29
- {
30
- "name": "primary_label",
31
- "type": "string",
32
- "default": "Shop collection",
33
- "description": "Primary button label"
34
- },
35
- {
36
- "name": "primary_category_id",
37
- "type": "category_single_select",
38
- "description": "Collection the primary button links to (resolved on the storefront)"
39
- },
40
- {
41
- "name": "secondary_label",
42
- "type": "string",
43
- "default": "Lookbook",
44
- "description": "Secondary button label (hidden if empty)"
45
- },
46
- {
47
- "name": "secondary_page_id",
48
- "type": "page_single_select",
49
- "description": "Simple page the secondary button links to (when label is set)"
50
- },
51
- {
52
- "name": "overlay_strength",
53
- "type": "number",
54
- "default": 42,
55
- "description": "Dark overlay strength (0–100)"
56
- },
57
- {
58
- "name": "accent_color",
59
- "type": "color",
60
- "default": "#C9A962",
61
- "description": "Accent for buttons and kicker when no image"
62
- },
63
- {
64
- "name": "text_color",
65
- "type": "color",
66
- "default": "#FAF7F2",
67
- "description": "Hero text color"
68
- },
69
- {
70
- "name": "alignment",
71
- "type": "select",
72
- "default": "center",
73
- "description": "Content alignment",
74
- "options": [
75
- { "label": "Center", "value": "center" },
76
- { "label": "Left", "value": "left" }
77
- ]
78
- },
79
- {
80
- "name": "min_height",
81
- "type": "select",
82
- "default": "tall",
83
- "description": "Minimum height",
84
- "options": [
85
- { "label": "Compact", "value": "compact" },
86
- { "label": "Tall", "value": "tall" },
87
- { "label": "Near full screen", "value": "screen" }
88
- ]
89
- }
90
- ]
91
- }
1
+ {
2
+ "icon": "https://files.easy-orders.net/1778106902099515265.png",
3
+ "label": "Runway hero",
4
+ "section_schema": [
5
+ {
6
+ "name": "image",
7
+ "type": "image",
8
+ "default": "",
9
+ "description": "Full-width background image URL"
10
+ },
11
+ {
12
+ "name": "kicker",
13
+ "type": "string",
14
+ "default": "New season",
15
+ "description": "Small line above the headline"
16
+ },
17
+ {
18
+ "name": "headline",
19
+ "type": "string",
20
+ "default": "The spring edit",
21
+ "description": "Main headline"
22
+ },
23
+ {
24
+ "name": "subheadline",
25
+ "type": "string",
26
+ "default": "Silhouettes, textures, and tones curated for everyday luxury.",
27
+ "description": "Supporting line under the headline"
28
+ },
29
+ {
30
+ "name": "primary_label",
31
+ "type": "string",
32
+ "default": "Shop collection",
33
+ "description": "Primary button label"
34
+ },
35
+ {
36
+ "name": "primary_link_type",
37
+ "type": "select",
38
+ "default": "category",
39
+ "description": "نوع رابط الزر الأول",
40
+ "options": [
41
+ { "label": "قسم (Category)", "value": "category" },
42
+ { "label": "منتج (Product)", "value": "product" },
43
+ { "label": "صفحة (Page)", "value": "page" }
44
+ ]
45
+ },
46
+ {
47
+ "name": "primary_category_id",
48
+ "type": "category_single_select",
49
+ "description": "اختيار القسم (لو نوع الرابط = قسم)"
50
+ },
51
+ {
52
+ "name": "primary_product_id",
53
+ "type": "product_single_select",
54
+ "description": "اختيار المنتج (لو نوع الرابط = منتج)"
55
+ },
56
+ {
57
+ "name": "primary_page_id",
58
+ "type": "page_single_select",
59
+ "description": "اختيار الصفحة (لو نوع الرابط = صفحة)"
60
+ },
61
+ {
62
+ "name": "secondary_label",
63
+ "type": "string",
64
+ "default": "Lookbook",
65
+ "description": "Secondary button label (hidden if empty)"
66
+ },
67
+ {
68
+ "name": "secondary_link_type",
69
+ "type": "select",
70
+ "default": "page",
71
+ "description": "نوع رابط الزر الثاني",
72
+ "options": [
73
+ { "label": "قسم (Category)", "value": "category" },
74
+ { "label": "منتج (Product)", "value": "product" },
75
+ { "label": "صفحة (Page)", "value": "page" }
76
+ ]
77
+ },
78
+ {
79
+ "name": "secondary_category_id",
80
+ "type": "category_single_select",
81
+ "description": "اختيار القسم للزر الثاني"
82
+ },
83
+ {
84
+ "name": "secondary_product_id",
85
+ "type": "product_single_select",
86
+ "description": "اختيار المنتج للزر الثاني"
87
+ },
88
+ {
89
+ "name": "secondary_page_id",
90
+ "type": "page_single_select",
91
+ "description": "اختيار الصفحة للزر الثاني"
92
+ },
93
+ {
94
+ "name": "overlay_strength",
95
+ "type": "number",
96
+ "default": 42,
97
+ "description": "Dark overlay strength (0–100)"
98
+ },
99
+ {
100
+ "name": "accent_color",
101
+ "type": "color",
102
+ "default": "#C9A962",
103
+ "description": "Accent for buttons and kicker when no image"
104
+ },
105
+ {
106
+ "name": "text_color",
107
+ "type": "color",
108
+ "default": "#FAF7F2",
109
+ "description": "Hero text color"
110
+ },
111
+ {
112
+ "name": "alignment",
113
+ "type": "select",
114
+ "default": "center",
115
+ "description": "Content alignment",
116
+ "options": [
117
+ { "label": "Center", "value": "center" },
118
+ { "label": "Left", "value": "left" }
119
+ ]
120
+ },
121
+ {
122
+ "name": "min_height_vh",
123
+ "type": "number",
124
+ "default": 72,
125
+ "description": "Minimum section height as % of viewport height (e.g. 72 = 72vh). Typical range 40–100."
126
+ },
127
+ {
128
+ "name": "enable_animation",
129
+ "type": "boolean",
130
+ "default": true,
131
+ "description": "Enable section animation"
132
+ },
133
+ {
134
+ "name": "animation_style",
135
+ "type": "select",
136
+ "default": "fade-up",
137
+ "description": "Animation style",
138
+ "options": [
139
+ { "label": "Fade Up", "value": "fade-up" },
140
+ { "label": "Zoom In", "value": "zoom-in" },
141
+ { "label": "Blur Reveal", "value": "blur-reveal" },
142
+ { "label": "Slide Cascade", "value": "slide-cascade" },
143
+ { "label": "Fade Right", "value": "fade-right" },
144
+ { "label": "Flip Up", "value": "flip-up" }
145
+ ]
146
+ }
147
+ ]
148
+ }