@runwell/shopify-toolkit 0.17.1 → 0.17.3

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.
@@ -60,23 +60,32 @@
60
60
  opacity: 0.85;
61
61
  }
62
62
 
63
- .runwell-how__steps {
63
+ .runwell-how__cards {
64
64
  display: flex;
65
65
  flex-direction: column;
66
66
  gap: 1.6rem;
67
67
  margin: 2rem 0;
68
68
  padding: 0;
69
69
  list-style: none;
70
+ border-top: 1px solid currentColor;
71
+ padding-top: 1.5rem;
70
72
  }
71
73
 
72
- .runwell-how__step {
74
+ .runwell-how__card {
73
75
  display: grid;
74
76
  grid-template-columns: auto 1fr;
75
77
  gap: 1rem;
76
78
  align-items: start;
79
+ padding-bottom: 1.5rem;
80
+ border-bottom: 1px solid rgba(0, 0, 0, 0.12);
81
+ }
82
+
83
+ .runwell-how__card:last-child {
84
+ border-bottom: 0;
85
+ padding-bottom: 0;
77
86
  }
78
87
 
79
- .runwell-how__step-number {
88
+ .runwell-how__card-num {
80
89
  font-family: var(--font-heading-family, serif);
81
90
  font-style: italic;
82
91
  font-size: calc(var(--font-heading-scale) * 1.6rem);
@@ -85,7 +94,11 @@
85
94
  min-width: 2.5ch;
86
95
  }
87
96
 
88
- .runwell-how__step-title {
97
+ .runwell-how__card-body {
98
+ display: block;
99
+ }
100
+
101
+ .runwell-how__card-title {
89
102
  font-family: var(--font-heading-family, serif);
90
103
  font-weight: 400;
91
104
  font-size: var(--runwell-h4-size);
@@ -93,7 +106,7 @@
93
106
  margin: 0 0 0.4rem 0;
94
107
  }
95
108
 
96
- .runwell-how__step-body {
109
+ .runwell-how__card-text {
97
110
  font-family: var(--font-body-family, sans-serif);
98
111
  font-size: var(--runwell-body-size);
99
112
  line-height: 1.55;
@@ -111,15 +124,3 @@
111
124
  text-decoration: underline;
112
125
  text-underline-offset: 4px;
113
126
  }
114
-
115
- .runwell-how__card {
116
- display: flex;
117
- flex-direction: column;
118
- }
119
-
120
- .runwell-how__card-text {
121
- font-family: var(--font-body-family, sans-serif);
122
- font-size: var(--runwell-body-size);
123
- line-height: 1.55;
124
- opacity: 0.8;
125
- }
@@ -4,7 +4,8 @@
4
4
  "category": "customer",
5
5
  "description": "Lifetime-spend tier card on the customer account page. Combined with Shopify Flow auto-tagging and tag-targeted discounts, replaces Smile.io / Yotpo Loyalty / LoyaltyLion. App-free.",
6
6
  "files": {
7
- "sections": ["sections/runwell-tier-card.liquid"]
7
+ "sections": ["sections/runwell-tier-card.liquid"],
8
+ "assets": ["assets/runwell-loyalty-tiers.css"]
8
9
  },
9
10
  "config": {
10
11
  "schema": {
@@ -6,6 +6,9 @@
6
6
  "files": {
7
7
  "sections": [
8
8
  "sections/runwell-pdp-reviews.liquid"
9
+ ],
10
+ "assets": [
11
+ "assets/runwell-reviews.css"
9
12
  ]
10
13
  },
11
14
  "config": {
@@ -4,7 +4,7 @@
4
4
  "category": "customer",
5
5
  "description": "Native wishlist using localStorage. Heart icon on cards + dedicated /pages/wishlist page. v1 ships localStorage; metafield sync via App Proxy is v0.2. Replaces Wishlist Plus, Wishlist King, Globo Wishlist.",
6
6
  "files": {
7
- "assets": ["assets/runwell-wishlist.js"],
7
+ "assets": ["assets/runwell-wishlist.js", "assets/runwell-wishlist.css"],
8
8
  "snippets": ["snippets/runwell-wishlist-icon.liquid"],
9
9
  "sections": ["sections/runwell-wishlist-page.liquid"],
10
10
  "templates": ["templates/page.wishlist.json"]
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@runwell/shopify-toolkit",
3
- "version": "0.17.1",
3
+ "version": "0.17.3",
4
4
  "description": "Reusable Shopify theme modules from Runwell. Replaces typically app-driven features (reviews, wishlist, urgency, FAQ, post-purchase upsell, exit popups, free-ship progress, sticky ATC, testimonials, badges, bundles) with native Liquid + JS + CSS that ship across multiple client themes via a config-driven sync CLI.",
5
5
  "type": "module",
6
6
  "main": "lib/index.js",