sonance-brand-mcp 1.3.84 → 1.3.85
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.
|
@@ -2582,7 +2582,15 @@ export function SonanceDevTools() {
|
|
|
2582
2582
|
</div>
|
|
2583
2583
|
|
|
2584
2584
|
{/* Content */}
|
|
2585
|
-
<div
|
|
2585
|
+
<div
|
|
2586
|
+
className="flex-1 overflow-y-auto p-4 text-[#333F48]"
|
|
2587
|
+
style={{
|
|
2588
|
+
overscrollBehavior: "contain", // Prevent scroll chaining to parent (modal)
|
|
2589
|
+
WebkitOverflowScrolling: "touch", // Smooth scrolling on iOS
|
|
2590
|
+
}}
|
|
2591
|
+
onWheel={(e) => e.stopPropagation()} // Prevent modal from intercepting wheel events
|
|
2592
|
+
onTouchMove={(e) => e.stopPropagation()} // Prevent modal from intercepting touch scroll
|
|
2593
|
+
>
|
|
2586
2594
|
{/* Analysis Tab */}
|
|
2587
2595
|
{activeTab === "analysis" && (
|
|
2588
2596
|
<AnalysisPanel
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "sonance-brand-mcp",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.85",
|
|
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",
|