hey-pharmacist-ecommerce 1.1.37 → 1.1.38

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 CHANGED
@@ -37,7 +37,6 @@ export const ecommerceConfig = {
37
37
  accent: "#F59E0B",
38
38
  },
39
39
  apiBaseUrl: "https://your-api.com",
40
- stripePublicKey: "pk_test_...",
41
40
  };
42
41
  ```
43
42
 
@@ -180,7 +179,6 @@ export const config: EcommerceConfig = {
180
179
  accent: '#10B981',
181
180
  },
182
181
  apiBaseUrl: 'https://api.heypharmacist.com',
183
- stripePublicKey: 'pk_test_...',
184
182
  };
185
183
  ```
186
184
 
package/dist/index.d.mts CHANGED
@@ -19,7 +19,6 @@ interface EcommerceConfig {
19
19
  to: string;
20
20
  };
21
21
  apiBaseUrl: string;
22
- stripePublicKey: string;
23
22
  }
24
23
  interface ProductFilters {
25
24
  category?: string;
package/dist/index.d.ts CHANGED
@@ -19,7 +19,6 @@ interface EcommerceConfig {
19
19
  to: string;
20
20
  };
21
21
  apiBaseUrl: string;
22
- stripePublicKey: string;
23
22
  }
24
23
  interface ProductFilters {
25
24
  category?: string;
package/dist/index.js CHANGED
@@ -17155,9 +17155,9 @@ function LoginScreen() {
17155
17155
  status && /* @__PURE__ */ jsxRuntime.jsxs(
17156
17156
  "div",
17157
17157
  {
17158
- className: `flex items-start gap-2 rounded-2xl border px-4 py-3 text-sm ${status.type === "success" ? "border-green-200 bg-green-50 text-green-800" : "border-red-200 bg-red-50 text-red-700"}`,
17158
+ className: `flex flex-row items-start gap-2 rounded-2xl border px-4 py-3 text-sm ${status.type === "success" ? "border-green-200 bg-green-50 text-green-800" : "border-red-200 bg-red-50 text-red-700"}`,
17159
17159
  children: [
17160
- /* @__PURE__ */ jsxRuntime.jsx("span", { className: "mt-[2px] text-base", children: status.type === "success" ? "\u2714" : "!" }),
17160
+ /* @__PURE__ */ jsxRuntime.jsx("span", { className: " text-base", children: status.type === "success" ? "\u2714" : "!" }),
17161
17161
  /* @__PURE__ */ jsxRuntime.jsx("span", { children: status.message })
17162
17162
  ]
17163
17163
  }