Skip to content

Commit d29c799

Browse files
committed
chore: update version and fix MCP client button styles
1 parent 041c416 commit d29c799

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## 0.14.2
4+
5+
- Fixed the styles of MCP client buttons.
6+
37
## 0.14.1
48

59
- Added a visual hint to help users find TemPad Dev panel easier when it overlaps with Figma's own panels.

packages/extension/components/sections/McpSection.vue

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,6 +143,7 @@ async function handleClientClick(client: McpClientDisplay) {
143143
<IconButton
144144
v-for="client in mcpClients"
145145
:key="client.name"
146+
variant="secondary"
146147
:title="client.tooltip"
147148
class="tp-mcp-client-button"
148149
:style="{
@@ -153,6 +154,7 @@ async function handleClientClick(client: McpClientDisplay) {
153154
<component :is="client.icon" class="tp-mcp-client-icon" />
154155
</IconButton>
155156
<IconButton
157+
variant="secondary"
156158
title="Copy configuration"
157159
class="tp-mcp-client-button"
158160
@click="copy(defaultConfig, copyMessages.config)"
@@ -221,7 +223,7 @@ label {
221223
}
222224
223225
.tp-mcp-client-button:hover {
224-
--color-icon: var(--tp-mcp-client-hover-color) !important;
226+
--icon-button-icon: var(--tp-mcp-client-hover-color) !important;
225227
}
226228
227229
.tp-mcp-toggle {

packages/extension/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "@tempad-dev/extension",
33
"description": "TemPad Dev browser extension.",
44
"private": true,
5-
"version": "0.14.1",
5+
"version": "0.14.2",
66
"type": "module",
77
"scripts": {
88
"dev": "wxt",

0 commit comments

Comments
 (0)