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,9 +1,26 @@
1
- {
2
- "hero_slides": [],
3
- "color_scheme": "light",
4
- "color_primary": "#1A1A2E",
5
- "hero_headline": "Welcome to Our Store",
6
- "font_size_base": 16,
7
- "hero_show_overlay": true,
8
- "product_badge_types": ["sale", "new"]
9
- }
1
+ {
2
+ "logo_height_desktop": 47,
3
+ "logo_height_mobile": 30,
4
+ "header_height_desktop": 80,
5
+ "header_height_mobile": 50,
6
+ "header_icon_size_desktop": 21,
7
+ "header_icon_size_mobile": 19,
8
+ "show_sale_badge": true,
9
+ "sale_badge_bg_color": "#c94a4a",
10
+ "sale_badge_text_color": "#ffffff",
11
+ "card_background_product": "color",
12
+ "card_background_product_color": "#f5f4f2",
13
+ "footer_newsletter_title": "",
14
+ "footer_newsletter_description": "",
15
+ "footer_newsletter_text_color": "#ffffff",
16
+ "hide_newsletter_mobile": false,
17
+ "show_payment_icons": true,
18
+ "main_container_padding_top": 40,
19
+ "pgrid_hero_cta_text_color": "#1f272b",
20
+ "pgrid_hero_cta_font_weight": "600",
21
+ "featured_hero_subtitle_text_color": "#ffffff",
22
+ "featured_hero_cta_background_color": "#ffffff",
23
+ "featured_hero_cta_text_color": "#1f272b",
24
+ "header_category_strip_bg_color": "#e1dbd1",
25
+ "header_category_strip_text_color": "#212a2f"
26
+ }
package/package.json CHANGED
@@ -1,40 +1,40 @@
1
- {
2
- "name": "easyorders",
3
- "version": "0.1.14",
4
- "description": "CLI tool for creating and developing Easy Orders themes",
5
- "type": "module",
6
- "bin": {
7
- "easyorders": "dist/bin/cli.js"
8
- },
9
- "files": [
10
- "dist/"
11
- ],
12
- "keywords": [
13
- "easy-orders",
14
- "easyorders",
15
- "theme",
16
- "ecommerce"
17
- ],
18
- "license": "MIT",
19
- "scripts": {
20
- "build": "tsc && shx rm -rf dist/template && shx cp -r cli/template dist/template",
21
- "dev": "npx tsx cli/bin/cli.ts start",
22
- "create-theme": "npx tsx cli/bin/cli.ts create-theme"
23
- },
24
- "dependencies": {
25
- "axios": "^1.9.0",
26
- "cloudflared": "^0.7.1",
27
- "cors": "^2.8.6",
28
- "dotenv": "^17.4.0",
29
- "express": "^4.21.2"
30
- },
31
- "devDependencies": {
32
- "@types/cors": "^2.8.19",
33
- "@types/express": "^4.17.21",
34
- "@types/node": "^22.10.0",
35
- "concurrently": "^9.2.1",
36
- "shx": "^0.4.0",
37
- "tsx": "^4.19.2",
38
- "typescript": "^5.7.2"
39
- }
40
- }
1
+ {
2
+ "name": "easyorders",
3
+ "version": "0.1.16",
4
+ "description": "CLI tool for creating and developing Easy Orders themes",
5
+ "type": "module",
6
+ "bin": {
7
+ "easyorders": "dist/bin/cli.js"
8
+ },
9
+ "files": [
10
+ "dist/"
11
+ ],
12
+ "keywords": [
13
+ "easy-orders",
14
+ "easyorders",
15
+ "theme",
16
+ "ecommerce"
17
+ ],
18
+ "license": "MIT",
19
+ "scripts": {
20
+ "build": "tsc && shx rm -rf dist/template && shx cp -r cli/template dist/template",
21
+ "dev": "npx tsx cli/bin/cli.ts start",
22
+ "create-theme": "npx tsx cli/bin/cli.ts create-theme"
23
+ },
24
+ "dependencies": {
25
+ "axios": "^1.9.0",
26
+ "cloudflared": "^0.7.1",
27
+ "cors": "^2.8.6",
28
+ "dotenv": "^17.4.0",
29
+ "express": "^4.21.2"
30
+ },
31
+ "devDependencies": {
32
+ "@types/cors": "^2.8.19",
33
+ "@types/express": "^4.17.21",
34
+ "@types/node": "^22.10.0",
35
+ "concurrently": "^9.2.1",
36
+ "shx": "^0.4.0",
37
+ "tsx": "^4.19.2",
38
+ "typescript": "^5.7.2"
39
+ }
40
+ }