handzon-core 0.8.3 → 0.8.4

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": "handzon-core",
3
- "version": "0.8.3",
3
+ "version": "0.8.4",
4
4
  "description": "Core framework for Handzon — layouts, components, content + AI libs, and server runtime (handlers, DB, auth, migration runner) consumed by Handzon scaffolds.",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -98,6 +98,27 @@ export default function UserMenu() {
98
98
  <span className="um-name" title={fullLabel}>
99
99
  {displayName}
100
100
  </span>
101
+ <a
102
+ className="um-btn um-btn-icon"
103
+ href="/settings/tokens"
104
+ title="Access tokens for editor MCP"
105
+ >
106
+ <svg
107
+ viewBox="0 0 24 24"
108
+ width="14"
109
+ height="14"
110
+ fill="none"
111
+ stroke="currentColor"
112
+ strokeWidth="2"
113
+ strokeLinecap="round"
114
+ strokeLinejoin="round"
115
+ aria-hidden="true"
116
+ >
117
+ <circle cx="7.5" cy="15.5" r="4.5" />
118
+ <path d="M11 12L20 3l1.5 1.5L20 6l1.5 1.5L19 9l-1.5-1.5L16 9" />
119
+ </svg>
120
+ <span className="sr-only">Access tokens</span>
121
+ </a>
101
122
  <form method="post" action="/api/auth/signout">
102
123
  <input type="hidden" name="csrfToken" value={csrfToken} />
103
124
  <input type="hidden" name="callbackUrl" value={callbackUrl} />