sonance-brand-mcp 1.3.81 → 1.3.83
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.
|
@@ -402,10 +402,17 @@ export function ChatInterface({
|
|
|
402
402
|
type="text"
|
|
403
403
|
value={input}
|
|
404
404
|
onChange={(e) => setInput(e.target.value)}
|
|
405
|
+
onClick={(e) => {
|
|
406
|
+
e.stopPropagation();
|
|
407
|
+
inputRef.current?.focus();
|
|
408
|
+
}}
|
|
405
409
|
onPointerDown={(e) => {
|
|
406
|
-
// Force focus capture - prevents modal focus trapping from blocking input
|
|
407
410
|
e.stopPropagation();
|
|
408
|
-
|
|
411
|
+
inputRef.current?.focus();
|
|
412
|
+
}}
|
|
413
|
+
onMouseDown={(e) => {
|
|
414
|
+
e.stopPropagation();
|
|
415
|
+
inputRef.current?.focus();
|
|
409
416
|
}}
|
|
410
417
|
onKeyDown={(e) => {
|
|
411
418
|
if (e.key === "Enter" && !e.shiftKey) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "sonance-brand-mcp",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.83",
|
|
4
4
|
"description": "MCP Server for Sonance Brand Guidelines and Component Library - gives Claude instant access to brand colors, typography, and UI components.",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"type": "module",
|