sixseconds-modules 1.3.5 → 1.3.7
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 +10 -5
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.es.js +10 -5
- package/dist/index.es.js.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs.js
CHANGED
|
@@ -102,7 +102,7 @@ const SubHeaderStyled = material.styled(material.AppBar)(() => ({
|
|
|
102
102
|
right: "0px",
|
|
103
103
|
top: "66px",
|
|
104
104
|
background: "#fff",
|
|
105
|
-
width: "
|
|
105
|
+
width: "380px",
|
|
106
106
|
borderRadius: "16px",
|
|
107
107
|
zIndex: "999",
|
|
108
108
|
boxShadow: "0px 4px 6px -2px #1A191908",
|
|
@@ -5318,7 +5318,10 @@ const AppMenus = ({ menuItems, setInitialState }) => {
|
|
|
5318
5318
|
item: true,
|
|
5319
5319
|
md: 4,
|
|
5320
5320
|
xs: 6,
|
|
5321
|
-
style: {
|
|
5321
|
+
style: {
|
|
5322
|
+
cursor: "pointer",
|
|
5323
|
+
textDecoration: "none"
|
|
5324
|
+
},
|
|
5322
5325
|
children: /* @__PURE__ */ jsxRuntime.jsx("div", { children: /* @__PURE__ */ jsxRuntime.jsxs(
|
|
5323
5326
|
material.Box,
|
|
5324
5327
|
{
|
|
@@ -5409,11 +5412,11 @@ const Header = ({
|
|
|
5409
5412
|
}, [isMenu]);
|
|
5410
5413
|
return /* @__PURE__ */ jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [
|
|
5411
5414
|
/* @__PURE__ */ jsxRuntime.jsx(SubHeaderStyled, { sx, children: /* @__PURE__ */ jsxRuntime.jsxs(material.Container, { maxWidth: false, sx: { display: "flex", justifyContent: "space-between", alignItems: "center" }, children: [
|
|
5412
|
-
/* @__PURE__ */ jsxRuntime.jsxs(material.Box, { sx: {
|
|
5415
|
+
/* @__PURE__ */ jsxRuntime.jsxs(material.Box, { sx: { display: "flex", alignItems: "center" }, children: [
|
|
5413
5416
|
logo,
|
|
5414
5417
|
frontCustomComponent
|
|
5415
5418
|
] }),
|
|
5416
|
-
/* @__PURE__ */ jsxRuntime.jsxs(material.Box, { sx: {
|
|
5419
|
+
/* @__PURE__ */ jsxRuntime.jsxs(material.Box, { sx: { display: "flex", alignItems: "center" }, children: [
|
|
5417
5420
|
isMenu && /* @__PURE__ */ jsxRuntime.jsx(DropdownMenu, { headerMenuArray: state.menuData, setInitialState: setState, initialState: state }),
|
|
5418
5421
|
centerCustomComponents
|
|
5419
5422
|
] }),
|
|
@@ -5562,6 +5565,9 @@ const App = () => {
|
|
|
5562
5565
|
{
|
|
5563
5566
|
isDesktopCollapsed: true,
|
|
5564
5567
|
isAccessAppMenu: true,
|
|
5568
|
+
frontCustomComponent: "sdf",
|
|
5569
|
+
centerCustomComponents: "center",
|
|
5570
|
+
endCustomComponents: "end",
|
|
5565
5571
|
userData: {
|
|
5566
5572
|
userprofile: "",
|
|
5567
5573
|
email: "sanskar.sahu@digimonk.in",
|
|
@@ -5672,7 +5678,6 @@ const App = () => {
|
|
|
5672
5678
|
isChangePassword: true,
|
|
5673
5679
|
isEditProfile: true
|
|
5674
5680
|
},
|
|
5675
|
-
isMenu: true,
|
|
5676
5681
|
t: () => ""
|
|
5677
5682
|
}
|
|
5678
5683
|
) });
|