@logickernel/bridge 0.11.10 → 0.12.0
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/next/components.js
CHANGED
|
@@ -894,9 +894,9 @@ function NavMain({ items }) {
|
|
|
894
894
|
});
|
|
895
895
|
}
|
|
896
896
|
if (useLink2) {
|
|
897
|
-
return /* @__PURE__ */ jsx(SidebarMenuSubItem, { children: /* @__PURE__ */ jsx(SidebarMenuSubButton, { asChild: true, children: /* @__PURE__ */ jsx(Link, { href: linkHref2, onClick: handleClick,
|
|
897
|
+
return /* @__PURE__ */ jsx(SidebarMenuSubItem, { children: /* @__PURE__ */ jsx(SidebarMenuSubButton, { asChild: true, children: /* @__PURE__ */ jsx(Link, { href: linkHref2, onClick: handleClick, children: /* @__PURE__ */ jsx("span", { children: subItem.title }) }) }) }, subItem.title);
|
|
898
898
|
}
|
|
899
|
-
return /* @__PURE__ */ jsx(SidebarMenuSubItem, { children: /* @__PURE__ */ jsx(SidebarMenuSubButton, { asChild: true, children: /* @__PURE__ */ jsx("a", { href: subItem.url,
|
|
899
|
+
return /* @__PURE__ */ jsx(SidebarMenuSubItem, { children: /* @__PURE__ */ jsx(SidebarMenuSubButton, { asChild: true, children: /* @__PURE__ */ jsx("a", { href: subItem.url, onClick: handleClick, children: /* @__PURE__ */ jsx("span", { children: subItem.title }) }) }) }, subItem.title);
|
|
900
900
|
}) }) })
|
|
901
901
|
] })
|
|
902
902
|
},
|
|
@@ -923,7 +923,7 @@ function NavMain({ items }) {
|
|
|
923
923
|
asChild: true,
|
|
924
924
|
tooltip: item.title,
|
|
925
925
|
isActive,
|
|
926
|
-
children: /* @__PURE__ */ jsxs(Link, { href: linkHref, onClick: handleClick,
|
|
926
|
+
children: /* @__PURE__ */ jsxs(Link, { href: linkHref, onClick: handleClick, children: [
|
|
927
927
|
item.icon && /* @__PURE__ */ jsx(item.icon, {}),
|
|
928
928
|
/* @__PURE__ */ jsx("span", { children: item.title })
|
|
929
929
|
] })
|
|
@@ -936,7 +936,7 @@ function NavMain({ items }) {
|
|
|
936
936
|
asChild: true,
|
|
937
937
|
tooltip: item.title,
|
|
938
938
|
isActive,
|
|
939
|
-
children: /* @__PURE__ */ jsxs("a", { href: item.url,
|
|
939
|
+
children: /* @__PURE__ */ jsxs("a", { href: item.url, onClick: handleClick, children: [
|
|
940
940
|
item.icon && /* @__PURE__ */ jsx(item.icon, {}),
|
|
941
941
|
/* @__PURE__ */ jsx("span", { children: item.title })
|
|
942
942
|
] })
|