zudoku 0.3.0-dev.106 → 0.3.0-dev.107

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.
@@ -1,5 +1,5 @@
1
1
  import { j as e } from "./jsx-runtime-B6kdoens.js";
2
- import { a as p, R as f } from "./SlotletProvider-CzMAO73_.js";
2
+ import { S as p, R as f } from "./SlotletProvider-D-WxwNAV.js";
3
3
  import { u as g, a as u, I as j, S as k, b as v, c as w, d as b, e as K, f as y } from "./Input-HmAaR6kw.js";
4
4
  import { b as N, L as x, O as E } from "./index-7kcHaXD6.js";
5
5
  import { u as h, t as A, j as S } from "./ZudokuContext-BIZ8zHbZ.js";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "zudoku",
3
- "version": "0.3.0-dev.106",
3
+ "version": "0.3.0-dev.107",
4
4
  "type": "module",
5
5
  "files": [
6
6
  "dist",
@@ -21,6 +21,7 @@ import { cn } from "../util/cn.js";
21
21
  import { useTheme } from "./context/ThemeContext.js";
22
22
  import { useZudoku } from "./context/ZudokuContext.js";
23
23
  import { Search } from "./Search.js";
24
+ import { Slotlet } from "./SlotletProvider.js";
24
25
  import { TopNavigation } from "./TopNavigation.js";
25
26
 
26
27
  const RecursiveMenu = ({ item }: { item: ProfileNavigationItem }) => {
@@ -94,6 +95,7 @@ export const Header = memo(function HeaderInner() {
94
95
  </div>
95
96
 
96
97
  <div className="items-center justify-self-end text-sm hidden lg:flex gap-2">
98
+ <Slotlet name="head-navigation-start" />
97
99
  {isAuthEnabled && !isAuthenticated ? (
98
100
  <Button variant="ghost" asChild>
99
101
  <Link
@@ -132,6 +134,7 @@ export const Header = memo(function HeaderInner() {
132
134
  >
133
135
  <ThemeIcon size={18} />
134
136
  </button>
137
+ <Slotlet name="head-navigation-end" />
135
138
  </div>
136
139
  </div>
137
140
  </div>