@atezer/figma-mcp-bridge 1.7.5 → 1.7.6
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/CHANGELOG.md +26 -0
- package/f-mcp-plugin/code.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -12,6 +12,32 @@ Bu dosya [Keep a Changelog](https://keepachangelog.com/tr/1.1.0/) bicimine uygun
|
|
|
12
12
|
|
|
13
13
|
Bu changelog'a ekleme oncesi surumlerin tam ayrintilari icin `git log` kullanilabilir.
|
|
14
14
|
|
|
15
|
+
## [1.7.6] - 2026-04-05
|
|
16
|
+
|
|
17
|
+
### component-documentation Skill (YENi — 18. skill)
|
|
18
|
+
|
|
19
|
+
- **Format secimi zorunlu:** Standard (~2400px) ve Compact (~1300px) secenekleri kullaniciya sunulur, onay olmadan frame olusturulmaz
|
|
20
|
+
- **Gorsel Do/Dont ornekleri:** Gercek component instance'lariyla dogru/yanlis cift kartlar (hiyerarsi, etiket, variant kullanimi)
|
|
21
|
+
- **Endustri standartlari referansi:** `reference_industry_design_standards.md` hafiza dosyasi (14 bolum: M3, HIG, WCAG 2.2, shadcn/ui, Tailwind, Radix, Lucide, DTCG)
|
|
22
|
+
- **Yillik guncelleme:** Standart kontrolu 1 yildan eskiyse kullaniciya guncelleme onerisi (9 kaynak)
|
|
23
|
+
- **SKILL_INDEX.md:** 17→18 skill, "Dokumantasyon" kategorisi eklendi
|
|
24
|
+
|
|
25
|
+
### generate-figma-library Skill (Zenginlestirme)
|
|
26
|
+
|
|
27
|
+
- **Token baglama tablosu:** fill, text fill, stroke, strokeWeight, radius, padding, gap, minHeight, fontSize — tum degerlerin variable'a bagli olmasi zorunlu
|
|
28
|
+
- **Text hizalama kurali:** Bilesen tipine gore textAlignHorizontal tablosu (Button=CENTER, Input=LEFT vb.)
|
|
29
|
+
- **Bilesen sizing kurali:** Button/Tag=HUG, Input=FILL — Fixed width butonlarda yazi ortalanmaz
|
|
30
|
+
- **Code only props:** `layoutPositioning = "ABSOLUTE"` zorunlu — auto-layout gap'te bosluk yaratmayi onler
|
|
31
|
+
- **Component set olusturma:** `figma_arrange_component_set` + sonrasinda `figma_execute` ile stroke/auto-layout/rename
|
|
32
|
+
|
|
33
|
+
### Plugin Bug Fix
|
|
34
|
+
|
|
35
|
+
- **`figma_arrange_component_set`:** `getNodeById` → `getNodeByIdAsync` duzeltildi (documentAccess: dynamic-page hatasi)
|
|
36
|
+
|
|
37
|
+
### FUTURE.md
|
|
38
|
+
|
|
39
|
+
- P2: Component documentation skill'inin diger bilesen tiplerinde testi (Input, Card, Modal, Nav)
|
|
40
|
+
|
|
15
41
|
## [1.7.4] - 2026-04-04
|
|
16
42
|
|
|
17
43
|
### Graceful Port Takeover — Oturum Gecisi Sorunu Cozuldu
|
package/f-mcp-plugin/code.js
CHANGED
|
@@ -2766,7 +2766,7 @@ figma.ui.onmessage = async (msg) => {
|
|
|
2766
2766
|
var nodes = [];
|
|
2767
2767
|
var parent = null;
|
|
2768
2768
|
for (var n = 0; n < nodeIds.length; n++) {
|
|
2769
|
-
var nd = figma.
|
|
2769
|
+
var nd = await figma.getNodeByIdAsync(nodeIds[n]);
|
|
2770
2770
|
if (!nd) throw new Error('Node not found: ' + nodeIds[n]);
|
|
2771
2771
|
if (nd.type !== 'COMPONENT') throw new Error('Node is not a COMPONENT: ' + nodeIds[n]);
|
|
2772
2772
|
nodes.push(nd);
|
package/package.json
CHANGED