baaz-custom-components 3.1.27 → 3.1.28
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.js +2 -2
- package/dist/index.mjs +3 -3
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -819,7 +819,7 @@ function DesktopNavbar({
|
|
|
819
819
|
notificationData,
|
|
820
820
|
router
|
|
821
821
|
}) {
|
|
822
|
-
return /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("nav", {
|
|
822
|
+
return /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("nav", { children: /* @__PURE__ */ (0, import_jsx_runtime11.jsxs)("div", { className: "flex justify-between px-10 py-2 bg-card items-center border-b-1", children: [
|
|
823
823
|
/* @__PURE__ */ (0, import_jsx_runtime11.jsxs)("div", { className: "left flex gap-4 items-center", children: [
|
|
824
824
|
/* @__PURE__ */ (0, import_jsx_runtime11.jsx)(
|
|
825
825
|
"img",
|
|
@@ -1595,7 +1595,7 @@ function Navbar({
|
|
|
1595
1595
|
setMounted(true);
|
|
1596
1596
|
}, []);
|
|
1597
1597
|
if (!mounted) return null;
|
|
1598
|
-
return /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(
|
|
1598
|
+
return /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("div", { className: "baaz-custom-components-navbar", children: isMobile ? /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(
|
|
1599
1599
|
MobileNavbar,
|
|
1600
1600
|
{
|
|
1601
1601
|
navbarData,
|
package/dist/index.mjs
CHANGED
|
@@ -785,7 +785,7 @@ function DesktopNavbar({
|
|
|
785
785
|
notificationData,
|
|
786
786
|
router
|
|
787
787
|
}) {
|
|
788
|
-
return /* @__PURE__ */ jsx11("nav", {
|
|
788
|
+
return /* @__PURE__ */ jsx11("nav", { children: /* @__PURE__ */ jsxs9("div", { className: "flex justify-between px-10 py-2 bg-card items-center border-b-1", children: [
|
|
789
789
|
/* @__PURE__ */ jsxs9("div", { className: "left flex gap-4 items-center", children: [
|
|
790
790
|
/* @__PURE__ */ jsx11(
|
|
791
791
|
"img",
|
|
@@ -1547,7 +1547,7 @@ function MobileNavbar({
|
|
|
1547
1547
|
}
|
|
1548
1548
|
|
|
1549
1549
|
// src/components/custom/navbar/navbar.tsx
|
|
1550
|
-
import {
|
|
1550
|
+
import { jsx as jsx19 } from "react/jsx-runtime";
|
|
1551
1551
|
function Navbar({
|
|
1552
1552
|
navbarData,
|
|
1553
1553
|
userData,
|
|
@@ -1561,7 +1561,7 @@ function Navbar({
|
|
|
1561
1561
|
setMounted(true);
|
|
1562
1562
|
}, []);
|
|
1563
1563
|
if (!mounted) return null;
|
|
1564
|
-
return /* @__PURE__ */ jsx19(
|
|
1564
|
+
return /* @__PURE__ */ jsx19("div", { className: "baaz-custom-components-navbar", children: isMobile ? /* @__PURE__ */ jsx19(
|
|
1565
1565
|
MobileNavbar,
|
|
1566
1566
|
{
|
|
1567
1567
|
navbarData,
|