@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.esm.js
CHANGED
|
@@ -1161,6 +1161,7 @@ function SignIn({
|
|
|
1161
1161
|
// Configuração
|
|
1162
1162
|
logo,
|
|
1163
1163
|
// Removido default, será calculado abaixo
|
|
1164
|
+
logoHeight = 33,
|
|
1164
1165
|
title = 'Entrar',
|
|
1165
1166
|
subtitle = 'Acesse sua conta para continuar',
|
|
1166
1167
|
// Variant
|
|
@@ -1240,6 +1241,7 @@ function SignIn({
|
|
|
1240
1241
|
const isLoading = loadingSignIn || loadingMagicLink || loadingResetPassword;
|
|
1241
1242
|
return /*#__PURE__*/jsxs(AuthCard, {
|
|
1242
1243
|
logo: finalLogo,
|
|
1244
|
+
logoHeight: logoHeight,
|
|
1243
1245
|
title: title,
|
|
1244
1246
|
subtitle: subtitle,
|
|
1245
1247
|
variant: variant,
|
|
@@ -1339,6 +1341,7 @@ function SignIn({
|
|
|
1339
1341
|
function SignUp({
|
|
1340
1342
|
// Configuração
|
|
1341
1343
|
logo,
|
|
1344
|
+
logoHeight = 33,
|
|
1342
1345
|
title = 'Criar Conta',
|
|
1343
1346
|
subtitle = 'Preencha os dados para se cadastrar',
|
|
1344
1347
|
// Variant
|
|
@@ -1390,6 +1393,7 @@ function SignUp({
|
|
|
1390
1393
|
};
|
|
1391
1394
|
return /*#__PURE__*/jsxs(AuthCard, {
|
|
1392
1395
|
logo: finalLogo,
|
|
1396
|
+
logoHeight: logoHeight,
|
|
1393
1397
|
title: title,
|
|
1394
1398
|
subtitle: subtitle,
|
|
1395
1399
|
variant: variant,
|