@logickernel/bridge 0.9.9 → 0.10.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/README.md +20 -7
- package/dist/index.cjs +3 -3
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +3 -3
- package/dist/index.js.map +1 -1
- package/dist/next/components.cjs +3 -3
- package/dist/next/components.cjs.map +1 -1
- package/dist/next/components.js +3 -3
- package/dist/next/components.js.map +1 -1
- package/dist/next/index.cjs +5 -5
- package/dist/next/index.cjs.map +1 -1
- package/dist/next/index.js +5 -5
- package/dist/next/index.js.map +1 -1
- package/package.json +1 -1
package/dist/next/components.js
CHANGED
|
@@ -1035,7 +1035,7 @@ function NavUser({ user }) {
|
|
|
1035
1035
|
const displayName = user.name || user.email;
|
|
1036
1036
|
const handleSignOut = async () => {
|
|
1037
1037
|
await signOut({ redirect: false });
|
|
1038
|
-
router.push("/auth/signin");
|
|
1038
|
+
router.push("/core/auth/signin");
|
|
1039
1039
|
router.refresh();
|
|
1040
1040
|
};
|
|
1041
1041
|
return /* @__PURE__ */ jsx(SidebarMenu, { children: /* @__PURE__ */ jsx(SidebarMenuItem, { children: /* @__PURE__ */ jsxs(DropdownMenu, { children: [
|
|
@@ -1199,7 +1199,7 @@ function TeamSwitcher({
|
|
|
1199
1199
|
}
|
|
1200
1200
|
function useNavigation({
|
|
1201
1201
|
organizationId,
|
|
1202
|
-
apiBaseUrl = "/api",
|
|
1202
|
+
apiBaseUrl = "/core/api",
|
|
1203
1203
|
enabled = true
|
|
1204
1204
|
} = {}) {
|
|
1205
1205
|
const [items, setItems] = useState([]);
|
|
@@ -1420,7 +1420,7 @@ function AppHeader() {
|
|
|
1420
1420
|
function SidebarContent2({ children }) {
|
|
1421
1421
|
return /* @__PURE__ */ jsxs(Fragment, { children: [
|
|
1422
1422
|
/* @__PURE__ */ jsx(AppHeader, {}),
|
|
1423
|
-
/* @__PURE__ */ jsx("main", { className: "px-4 py-
|
|
1423
|
+
/* @__PURE__ */ jsx("main", { className: "px-4 py-0 md:py-6", children })
|
|
1424
1424
|
] });
|
|
1425
1425
|
}
|
|
1426
1426
|
function AppLayout({
|