sixseconds-modules 1.6.170 → 1.6.172
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.cjs.js +5 -22
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.es.js +5 -22
- package/dist/index.es.js.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs.js
CHANGED
|
@@ -13665,24 +13665,6 @@ var createCache = function createCache2(options) {
|
|
|
13665
13665
|
const isolatedTheme = material.createTheme({
|
|
13666
13666
|
typography: {
|
|
13667
13667
|
fontFamily: "'IBM Plex Sans', sans-serif"
|
|
13668
|
-
},
|
|
13669
|
-
components: {
|
|
13670
|
-
MuiDialog: {
|
|
13671
|
-
defaultProps: {
|
|
13672
|
-
disablePortal: true
|
|
13673
|
-
// Prevents modals from portaling out into the Host's body so they stay inside MuiProvider's DOM subtree.
|
|
13674
|
-
}
|
|
13675
|
-
},
|
|
13676
|
-
MuiPopover: {
|
|
13677
|
-
defaultProps: {
|
|
13678
|
-
disablePortal: true
|
|
13679
|
-
}
|
|
13680
|
-
},
|
|
13681
|
-
MuiMenu: {
|
|
13682
|
-
defaultProps: {
|
|
13683
|
-
disablePortal: true
|
|
13684
|
-
}
|
|
13685
|
-
}
|
|
13686
13668
|
}
|
|
13687
13669
|
});
|
|
13688
13670
|
material.unstable_ClassNameGenerator.configure((componentName) => `sixseconds-modules-${componentName}`);
|
|
@@ -13729,7 +13711,7 @@ const DangerDialog = ({
|
|
|
13729
13711
|
onClose: () => handleCloseUtil(setInitialState),
|
|
13730
13712
|
open,
|
|
13731
13713
|
"aria-labelledby": "draggable-dialog-title",
|
|
13732
|
-
children: /* @__PURE__ */ jsxRuntime.jsxs(material.Box, { sx: { p: 3 }, children: [
|
|
13714
|
+
children: /* @__PURE__ */ jsxRuntime.jsxs(material.Box, { sx: { p: 3 }, className: "sixseconds-header-root", children: [
|
|
13733
13715
|
/* @__PURE__ */ jsxRuntime.jsxs(material.Stack, { direction: "column", spacing: 2, alignItems: "flex-start", sx: { textAlign: "start", mb: 2 }, children: [
|
|
13734
13716
|
/* @__PURE__ */ jsxRuntime.jsx(ExitToAppTwoToneIcon, { sx: { color: "#d32f2f", fontSize: "48px" } }),
|
|
13735
13717
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
@@ -14201,7 +14183,7 @@ function ViewProfileDialog({ userData, setInitialState, isOpen }) {
|
|
|
14201
14183
|
},
|
|
14202
14184
|
onClose: () => handleCloseUtil(setInitialState),
|
|
14203
14185
|
open: isOpen,
|
|
14204
|
-
children: /* @__PURE__ */ jsxRuntime.jsxs(ProfileStyled, { children: [
|
|
14186
|
+
children: /* @__PURE__ */ jsxRuntime.jsxs(ProfileStyled, { className: "sixseconds-header-root", children: [
|
|
14205
14187
|
/* @__PURE__ */ jsxRuntime.jsx(material.Box, { sx: { display: "flex", justifyContent: "flex-end", p: 1.5 }, children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
14206
14188
|
material.IconButton,
|
|
14207
14189
|
{
|
|
@@ -14437,12 +14419,13 @@ function ChangePasswordDialog({ isOpen, email, t: t2, setInitialState }) {
|
|
|
14437
14419
|
PaperProps: {
|
|
14438
14420
|
sx: {
|
|
14439
14421
|
borderRadius: "16px",
|
|
14440
|
-
boxShadow: "0px 12px 32px rgba(0,0,0,0.12)"
|
|
14422
|
+
boxShadow: "0px 12px 32px rgba(0,0,0,0.12)",
|
|
14423
|
+
display: "block !important"
|
|
14441
14424
|
}
|
|
14442
14425
|
},
|
|
14443
14426
|
onClose: () => handleCloseUtil(setInitialState),
|
|
14444
14427
|
open: isOpen,
|
|
14445
|
-
children: /* @__PURE__ */ jsxRuntime.jsx("form", { onSubmit: formik.handleSubmit, children: /* @__PURE__ */ jsxRuntime.jsxs(ChangePasswordStyled, { children: [
|
|
14428
|
+
children: /* @__PURE__ */ jsxRuntime.jsx("form", { onSubmit: formik.handleSubmit, children: /* @__PURE__ */ jsxRuntime.jsxs(ChangePasswordStyled, { className: "sixseconds-header-root", children: [
|
|
14446
14429
|
/* @__PURE__ */ jsxRuntime.jsx(material.Box, { sx: { display: "flex", justifyContent: "flex-end", p: 1.5 }, children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
14447
14430
|
material.IconButton,
|
|
14448
14431
|
{
|