sixseconds-modules 1.6.14 → 1.6.15

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.es.js CHANGED
@@ -9469,13 +9469,13 @@ function ViewProfileDialog({ userData, setInitialState, isOpen }) {
9469
9469
  Dialog,
9470
9470
  {
9471
9471
  fullWidth: false,
9472
- sx: { "& .MuiPaper-root": { maxWidth: "400px", borderRadius: "12px" } },
9472
+ sx: { "& .MuiPaper-root": { maxWidth: "600px", borderRadius: "12px" } },
9473
9473
  onClose: () => handleCloseUtil(setInitialState),
9474
9474
  open: isOpen,
9475
9475
  "aria-labelledby": "draggable-dialog-title",
9476
9476
  children: [
9477
9477
  /* @__PURE__ */ jsxs(ProfileStyled, { children: [
9478
- /* @__PURE__ */ jsx(Box, { sx: { textAlign: "right" }, children: /* @__PURE__ */ jsx(
9478
+ /* @__PURE__ */ jsx(Box, { sx: { textAlign: "right", padding: "10px 10px 0px 0px" }, children: /* @__PURE__ */ jsx(
9479
9479
  IconButton,
9480
9480
  {
9481
9481
  onClick: () => setInitialState((p) => ({ ...p, toggles: { ...p.toggles, viewProfile: false } })),
@@ -9484,7 +9484,7 @@ function ViewProfileDialog({ userData, setInitialState, isOpen }) {
9484
9484
  children: /* @__PURE__ */ jsx(CloseIcon, {})
9485
9485
  }
9486
9486
  ) }),
9487
- /* @__PURE__ */ jsx(Box, { children: /* @__PURE__ */ jsxs(Grid, { container: true, spacing: 2, children: [
9487
+ /* @__PURE__ */ jsx(Box, { sx: { p: 2 }, children: /* @__PURE__ */ jsxs(Grid, { container: true, spacing: 2, children: [
9488
9488
  /* @__PURE__ */ jsxs(Grid, { item: true, xs: 12, lg: 6, children: [
9489
9489
  /* @__PURE__ */ jsx(Box, { children: /* @__PURE__ */ jsx(
9490
9490
  Avatar,
@@ -10389,11 +10389,11 @@ function ChangePasswordDialog({ isOpen, email, t: t2, setInitialState }) {
10389
10389
  Dialog,
10390
10390
  {
10391
10391
  fullWidth: false,
10392
- sx: { "& .MuiPaper-root": { maxWidth: "400px", borderRadius: "12px" } },
10392
+ sx: { "& .MuiPaper-root": { maxWidth: "600px", borderRadius: "12px" } },
10393
10393
  onClose: () => handleCloseUtil(setInitialState),
10394
10394
  open: isOpen,
10395
10395
  "aria-labelledby": "draggable-dialog-title",
10396
- children: /* @__PURE__ */ jsx(ChangePasswordStyled, { children: /* @__PURE__ */ jsx("form", { onSubmit: formik.handleSubmit, children: /* @__PURE__ */ jsxs(Box, { sx: { pr: { xs: 0, lg: 8 } }, children: [
10396
+ children: /* @__PURE__ */ jsx("form", { onSubmit: formik.handleSubmit, children: /* @__PURE__ */ jsx(ChangePasswordStyled, { children: /* @__PURE__ */ jsxs(Box, { sx: { pr: { xs: 0, lg: 8 }, p: 2 }, children: [
10397
10397
  /* @__PURE__ */ jsx(Typography, { variant: "h6", sx: { display: "flex", alignItems: "center" }, className: "Heading", children: "Change Password" }),
10398
10398
  /* @__PURE__ */ jsx(
10399
10399
  Box,