@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.cjs
CHANGED
|
@@ -923,9 +923,9 @@ function NavMain({ items }) {
|
|
|
923
923
|
});
|
|
924
924
|
}
|
|
925
925
|
if (useLink2) {
|
|
926
|
-
return /* @__PURE__ */ jsxRuntime.jsx(SidebarMenuSubItem, { children: /* @__PURE__ */ jsxRuntime.jsx(SidebarMenuSubButton, { asChild: true, children: /* @__PURE__ */ jsxRuntime.jsx(Link__default.default, { href: linkHref2, onClick: handleClick,
|
|
926
|
+
return /* @__PURE__ */ jsxRuntime.jsx(SidebarMenuSubItem, { children: /* @__PURE__ */ jsxRuntime.jsx(SidebarMenuSubButton, { asChild: true, children: /* @__PURE__ */ jsxRuntime.jsx(Link__default.default, { href: linkHref2, onClick: handleClick, children: /* @__PURE__ */ jsxRuntime.jsx("span", { children: subItem.title }) }) }) }, subItem.title);
|
|
927
927
|
}
|
|
928
|
-
return /* @__PURE__ */ jsxRuntime.jsx(SidebarMenuSubItem, { children: /* @__PURE__ */ jsxRuntime.jsx(SidebarMenuSubButton, { asChild: true, children: /* @__PURE__ */ jsxRuntime.jsx("a", { href: subItem.url,
|
|
928
|
+
return /* @__PURE__ */ jsxRuntime.jsx(SidebarMenuSubItem, { children: /* @__PURE__ */ jsxRuntime.jsx(SidebarMenuSubButton, { asChild: true, children: /* @__PURE__ */ jsxRuntime.jsx("a", { href: subItem.url, onClick: handleClick, children: /* @__PURE__ */ jsxRuntime.jsx("span", { children: subItem.title }) }) }) }, subItem.title);
|
|
929
929
|
}) }) })
|
|
930
930
|
] })
|
|
931
931
|
},
|
|
@@ -952,7 +952,7 @@ function NavMain({ items }) {
|
|
|
952
952
|
asChild: true,
|
|
953
953
|
tooltip: item.title,
|
|
954
954
|
isActive,
|
|
955
|
-
children: /* @__PURE__ */ jsxRuntime.jsxs(Link__default.default, { href: linkHref, onClick: handleClick,
|
|
955
|
+
children: /* @__PURE__ */ jsxRuntime.jsxs(Link__default.default, { href: linkHref, onClick: handleClick, children: [
|
|
956
956
|
item.icon && /* @__PURE__ */ jsxRuntime.jsx(item.icon, {}),
|
|
957
957
|
/* @__PURE__ */ jsxRuntime.jsx("span", { children: item.title })
|
|
958
958
|
] })
|
|
@@ -965,7 +965,7 @@ function NavMain({ items }) {
|
|
|
965
965
|
asChild: true,
|
|
966
966
|
tooltip: item.title,
|
|
967
967
|
isActive,
|
|
968
|
-
children: /* @__PURE__ */ jsxRuntime.jsxs("a", { href: item.url,
|
|
968
|
+
children: /* @__PURE__ */ jsxRuntime.jsxs("a", { href: item.url, onClick: handleClick, children: [
|
|
969
969
|
item.icon && /* @__PURE__ */ jsxRuntime.jsx(item.icon, {}),
|
|
970
970
|
/* @__PURE__ */ jsxRuntime.jsx("span", { children: item.title })
|
|
971
971
|
] })
|