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 +0 -2
- package/dist/index.d.mts +0 -1
- package/dist/index.d.ts +0 -1
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/lib/types/index.ts +0 -1
- package/src/screens/LoginScreen.tsx +2 -2
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
package/dist/index.d.ts
CHANGED
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: "
|
|
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
|
}
|