@commandcenterio/convert-ui 0.0.8 → 0.0.9
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 +2 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
@@ -465,8 +465,8 @@ var Navbar = function({
|
|
465
465
|
const logoHeightStyle = { "--logo-height": logoHeight };
|
466
466
|
return /* @__PURE__ */ jsxRuntime.jsx("div", { className: "w-full", children: /* @__PURE__ */ jsxRuntime.jsxs("div", { className: `${containerClasses} ${classNames2}`, children: [
|
467
467
|
!!children ? /* @__PURE__ */ jsxRuntime.jsx("div", { className: "flex flex-row justify-between items-center", children }) : /* @__PURE__ */ jsxRuntime.jsx("div", { className: "h-[var(--logo-height)]", style: logoHeightStyle, children: /* @__PURE__ */ jsxRuntime.jsx("img", { className: "h-[var(--logo-height)]", src: logo || "", alt: "logo" }) }),
|
468
|
-
/* @__PURE__ */ jsxRuntime.jsx("ul", { className: "menu menu-horizontal hidden items-center gap-2 px-1
|
469
|
-
/* @__PURE__ */ jsxRuntime.jsx("ul", { className: "menu menu-horizontal items-center gap-2 px-1
|
468
|
+
/* @__PURE__ */ jsxRuntime.jsx("ul", { className: "menu menu-horizontal hidden items-center gap-2 px-1 lg:flex flex-nowrap", children: renderMenuItem() }),
|
469
|
+
/* @__PURE__ */ jsxRuntime.jsx("ul", { className: "menu menu-horizontal items-center gap-2 px-1 lg:hidden", children: /* @__PURE__ */ jsxRuntime.jsx("li", { className: "flex", children: /* @__PURE__ */ jsxRuntime.jsxs("details", { className: "items-start", children: [
|
470
470
|
/* @__PURE__ */ jsxRuntime.jsx("summary", { children: "Navigate" }),
|
471
471
|
/* @__PURE__ */ jsxRuntime.jsx("div", { className: "flex flex-col gap-2 absolute bg-base-300 rounded-box mt-2 p-4", children: renderMenuItem() })
|
472
472
|
] }) }) }),
|
package/dist/index.mjs
CHANGED
@@ -455,8 +455,8 @@ var Navbar = function({
|
|
455
455
|
const logoHeightStyle = { "--logo-height": logoHeight };
|
456
456
|
return /* @__PURE__ */ jsx("div", { className: "w-full", children: /* @__PURE__ */ jsxs("div", { className: `${containerClasses} ${classNames2}`, children: [
|
457
457
|
!!children ? /* @__PURE__ */ jsx("div", { className: "flex flex-row justify-between items-center", children }) : /* @__PURE__ */ jsx("div", { className: "h-[var(--logo-height)]", style: logoHeightStyle, children: /* @__PURE__ */ jsx("img", { className: "h-[var(--logo-height)]", src: logo || "", alt: "logo" }) }),
|
458
|
-
/* @__PURE__ */ jsx("ul", { className: "menu menu-horizontal hidden items-center gap-2 px-1
|
459
|
-
/* @__PURE__ */ jsx("ul", { className: "menu menu-horizontal items-center gap-2 px-1
|
458
|
+
/* @__PURE__ */ jsx("ul", { className: "menu menu-horizontal hidden items-center gap-2 px-1 lg:flex flex-nowrap", children: renderMenuItem() }),
|
459
|
+
/* @__PURE__ */ jsx("ul", { className: "menu menu-horizontal items-center gap-2 px-1 lg:hidden", children: /* @__PURE__ */ jsx("li", { className: "flex", children: /* @__PURE__ */ jsxs("details", { className: "items-start", children: [
|
460
460
|
/* @__PURE__ */ jsx("summary", { children: "Navigate" }),
|
461
461
|
/* @__PURE__ */ jsx("div", { className: "flex flex-col gap-2 absolute bg-base-300 rounded-box mt-2 p-4", children: renderMenuItem() })
|
462
462
|
] }) }) }),
|