@digilogiclabs/saas-factory-auth 5.1.0 → 6.0.0
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/dist/index.js +18 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +18 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +2 -2
package/dist/index.mjs
CHANGED
|
@@ -2433,8 +2433,24 @@ var AuthForm = ({
|
|
|
2433
2433
|
}
|
|
2434
2434
|
)
|
|
2435
2435
|
] }),
|
|
2436
|
-
error && /* @__PURE__ */ jsx2(
|
|
2437
|
-
|
|
2436
|
+
error && /* @__PURE__ */ jsx2(
|
|
2437
|
+
"div",
|
|
2438
|
+
{
|
|
2439
|
+
className: "text-sm text-red-600",
|
|
2440
|
+
role: "alert",
|
|
2441
|
+
"aria-live": "assertive",
|
|
2442
|
+
children: error
|
|
2443
|
+
}
|
|
2444
|
+
),
|
|
2445
|
+
message && /* @__PURE__ */ jsx2(
|
|
2446
|
+
"div",
|
|
2447
|
+
{
|
|
2448
|
+
className: "text-sm text-green-600",
|
|
2449
|
+
role: "status",
|
|
2450
|
+
"aria-live": "polite",
|
|
2451
|
+
children: message
|
|
2452
|
+
}
|
|
2453
|
+
),
|
|
2438
2454
|
/* @__PURE__ */ jsx2(
|
|
2439
2455
|
"button",
|
|
2440
2456
|
{
|