@crossworks/share-ui 0.232.59 → 0.232.61

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@crossworks/share-ui",
3
- "version": "0.232.59",
3
+ "version": "0.232.61",
4
4
  "description": "The server-rendered share surface — the /s/<token> presenters, view-payload contract, mini-app sandbox, and the few primitives they need. Lives in MANTLE (the server renders these), published for jackdaw to consume; may depend only on @mantle/{client-types,content-core} (the jackdaw-repo-split boundary).",
5
5
  "exports": {
6
6
  "./app-presenter": "./src/app-presenter.tsx",
@@ -32,8 +32,8 @@
32
32
  "./styles/app.css": "./styles/app.css"
33
33
  },
34
34
  "dependencies": {
35
- "@mantle/client-types": "npm:@crossworks/client-types@0.232.59",
36
- "@mantle/content-core": "npm:@crossworks/content-core@0.232.59",
35
+ "@mantle/client-types": "npm:@crossworks/client-types@0.232.61",
36
+ "@mantle/content-core": "npm:@crossworks/content-core@0.232.61",
37
37
  "@radix-ui/react-label": "^2.1.12",
38
38
  "@radix-ui/react-slot": "^1.3.0",
39
39
  "class-variance-authority": "^0.7.1",
@@ -17,6 +17,7 @@ const ROUTE_TOPICS: ReadonlyArray<readonly [route: string, topic: string]> = [
17
17
  // ── Workspace ──────────────────────────────────────────────────────────
18
18
  ['/tables', 'tables'],
19
19
  ['/pages', 'pages'],
20
+ ['/recall', 'recall'],
20
21
  ['/draw', 'draw'],
21
22
  ['/notes', 'notes'],
22
23
  ['/files', 'files'],
package/src/nav-items.ts CHANGED
@@ -27,6 +27,7 @@ import {
27
27
  LayoutDashboard,
28
28
  ListTree,
29
29
  Key,
30
+ Map,
30
31
  Plug,
31
32
  Lock,
32
33
  Network,
@@ -104,6 +105,7 @@ export const NAV_GROUPS: NavGroup[] = [
104
105
  { name: 'Files', href: '/files', icon: FolderTree },
105
106
  { name: 'Notes', href: '/notes', icon: FileText },
106
107
  { name: 'Pages', href: '/pages', icon: BookText },
108
+ { name: 'Recall', href: '/recall', icon: Map },
107
109
  { name: 'Draw', href: '/draw', icon: PenTool },
108
110
  { name: 'Tables', href: '/tables', icon: Table2 },
109
111
  { name: 'Formulas', href: '/formulas', icon: Sigma },