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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "hey-pharmacist-ecommerce",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.38",
|
|
4
4
|
"description": "Production-ready, multi-tenant e‑commerce UI + API adapter for Next.js with auth, carts, checkout, orders, theming, and pharmacist-focused UX.",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.mjs",
|
package/src/lib/types/index.ts
CHANGED
|
@@ -93,13 +93,13 @@ export function LoginScreen() {
|
|
|
93
93
|
}}>
|
|
94
94
|
{status && (
|
|
95
95
|
<div
|
|
96
|
-
className={`flex items-start gap-2 rounded-2xl border px-4 py-3 text-sm ${
|
|
96
|
+
className={`flex flex-row items-start gap-2 rounded-2xl border px-4 py-3 text-sm ${
|
|
97
97
|
status.type === 'success'
|
|
98
98
|
? 'border-green-200 bg-green-50 text-green-800'
|
|
99
99
|
: 'border-red-200 bg-red-50 text-red-700'
|
|
100
100
|
}`}
|
|
101
101
|
>
|
|
102
|
-
<span className="
|
|
102
|
+
<span className=" text-base">{status.type === 'success' ? '✔' : '!'}</span>
|
|
103
103
|
<span>{status.message}</span>
|
|
104
104
|
</div>
|
|
105
105
|
)}
|