@riligar/auth-react 1.28.3 → 1.29.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 +5 -3
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +5 -3
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.esm.js
CHANGED
|
@@ -2408,6 +2408,7 @@ function UserProfile({
|
|
|
2408
2408
|
expanded
|
|
2409
2409
|
}) => /*#__PURE__*/jsx(Card, {
|
|
2410
2410
|
p: "xs",
|
|
2411
|
+
withBorder: false,
|
|
2411
2412
|
children: /*#__PURE__*/jsxs(Group, {
|
|
2412
2413
|
justify: "space-between",
|
|
2413
2414
|
wrap: "nowrap",
|
|
@@ -2444,7 +2445,7 @@ function UserProfile({
|
|
|
2444
2445
|
// Conteúdo interno compartilhado
|
|
2445
2446
|
const profileContent = /*#__PURE__*/jsxs(Fragment, {
|
|
2446
2447
|
children: [(showAvatar || showName || showEmail) && /*#__PURE__*/jsxs(Box, {
|
|
2447
|
-
mb: "
|
|
2448
|
+
mb: "lg",
|
|
2448
2449
|
children: [/*#__PURE__*/jsx(SectionHeader, {
|
|
2449
2450
|
icon: IconUser,
|
|
2450
2451
|
sectionTitle: labels.profileSection || 'Profile',
|
|
@@ -2575,8 +2576,9 @@ function UserProfile({
|
|
|
2575
2576
|
}), /*#__PURE__*/jsx(Collapse, {
|
|
2576
2577
|
in: editingSection === 'name',
|
|
2577
2578
|
children: /*#__PURE__*/jsx(Card, {
|
|
2578
|
-
p: "md"
|
|
2579
|
-
withBorder
|
|
2579
|
+
p: "md"
|
|
2580
|
+
// withBorder
|
|
2581
|
+
,
|
|
2580
2582
|
children: /*#__PURE__*/jsx("form", {
|
|
2581
2583
|
onSubmit: nameForm.onSubmit(handleChangeName),
|
|
2582
2584
|
children: /*#__PURE__*/jsxs(Stack, {
|