sixseconds-modules 1.3.6 → 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 +5 -3
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.es.js +5 -3
- package/dist/index.es.js.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs.js
CHANGED
|
@@ -5412,11 +5412,11 @@ const Header = ({
|
|
|
5412
5412
|
}, [isMenu]);
|
|
5413
5413
|
return /* @__PURE__ */ jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [
|
|
5414
5414
|
/* @__PURE__ */ jsxRuntime.jsx(SubHeaderStyled, { sx, children: /* @__PURE__ */ jsxRuntime.jsxs(material.Container, { maxWidth: false, sx: { display: "flex", justifyContent: "space-between", alignItems: "center" }, children: [
|
|
5415
|
-
/* @__PURE__ */ jsxRuntime.jsxs(material.Box, { sx: {
|
|
5415
|
+
/* @__PURE__ */ jsxRuntime.jsxs(material.Box, { sx: { display: "flex", alignItems: "center" }, children: [
|
|
5416
5416
|
logo,
|
|
5417
5417
|
frontCustomComponent
|
|
5418
5418
|
] }),
|
|
5419
|
-
/* @__PURE__ */ jsxRuntime.jsxs(material.Box, { sx: {
|
|
5419
|
+
/* @__PURE__ */ jsxRuntime.jsxs(material.Box, { sx: { display: "flex", alignItems: "center" }, children: [
|
|
5420
5420
|
isMenu && /* @__PURE__ */ jsxRuntime.jsx(DropdownMenu, { headerMenuArray: state.menuData, setInitialState: setState, initialState: state }),
|
|
5421
5421
|
centerCustomComponents
|
|
5422
5422
|
] }),
|
|
@@ -5565,6 +5565,9 @@ const App = () => {
|
|
|
5565
5565
|
{
|
|
5566
5566
|
isDesktopCollapsed: true,
|
|
5567
5567
|
isAccessAppMenu: true,
|
|
5568
|
+
frontCustomComponent: "sdf",
|
|
5569
|
+
centerCustomComponents: "center",
|
|
5570
|
+
endCustomComponents: "end",
|
|
5568
5571
|
userData: {
|
|
5569
5572
|
userprofile: "",
|
|
5570
5573
|
email: "sanskar.sahu@digimonk.in",
|
|
@@ -5675,7 +5678,6 @@ const App = () => {
|
|
|
5675
5678
|
isChangePassword: true,
|
|
5676
5679
|
isEditProfile: true
|
|
5677
5680
|
},
|
|
5678
|
-
isMenu: true,
|
|
5679
5681
|
t: () => ""
|
|
5680
5682
|
}
|
|
5681
5683
|
) });
|