@riligar/auth-react 1.31.0 → 1.32.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.esm.js +4 -0
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +4 -0
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -1163,6 +1163,7 @@ function SignIn({
|
|
|
1163
1163
|
// Configuração
|
|
1164
1164
|
logo,
|
|
1165
1165
|
// Removido default, será calculado abaixo
|
|
1166
|
+
logoHeight = 33,
|
|
1166
1167
|
title = 'Entrar',
|
|
1167
1168
|
subtitle = 'Acesse sua conta para continuar',
|
|
1168
1169
|
// Variant
|
|
@@ -1242,6 +1243,7 @@ function SignIn({
|
|
|
1242
1243
|
const isLoading = loadingSignIn || loadingMagicLink || loadingResetPassword;
|
|
1243
1244
|
return /*#__PURE__*/jsxRuntime.jsxs(AuthCard, {
|
|
1244
1245
|
logo: finalLogo,
|
|
1246
|
+
logoHeight: logoHeight,
|
|
1245
1247
|
title: title,
|
|
1246
1248
|
subtitle: subtitle,
|
|
1247
1249
|
variant: variant,
|
|
@@ -1341,6 +1343,7 @@ function SignIn({
|
|
|
1341
1343
|
function SignUp({
|
|
1342
1344
|
// Configuração
|
|
1343
1345
|
logo,
|
|
1346
|
+
logoHeight = 33,
|
|
1344
1347
|
title = 'Criar Conta',
|
|
1345
1348
|
subtitle = 'Preencha os dados para se cadastrar',
|
|
1346
1349
|
// Variant
|
|
@@ -1392,6 +1395,7 @@ function SignUp({
|
|
|
1392
1395
|
};
|
|
1393
1396
|
return /*#__PURE__*/jsxRuntime.jsxs(AuthCard, {
|
|
1394
1397
|
logo: finalLogo,
|
|
1398
|
+
logoHeight: logoHeight,
|
|
1395
1399
|
title: title,
|
|
1396
1400
|
subtitle: subtitle,
|
|
1397
1401
|
variant: variant,
|