figmatk 0.0.18 → 0.0.19
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
|
@@ -6,7 +6,7 @@ description: >
|
|
|
6
6
|
clone or remove slides, or produce a .deck file for Figma Slides.
|
|
7
7
|
Powered by FigmaTK under the hood.
|
|
8
8
|
metadata:
|
|
9
|
-
version: "0.0.
|
|
9
|
+
version: "0.0.19"
|
|
10
10
|
---
|
|
11
11
|
|
|
12
12
|
# Figma Slides Creator
|
|
@@ -100,6 +100,7 @@ If this fails, check the error and fix the script — **do not change the worksp
|
|
|
100
100
|
| Shape fill color | `{ fill: '#F4900C' }` | `{ fill: hex('#F4900C') }` — use the hex() helper |
|
|
101
101
|
| `addLine` options | `{ strokeColor: ..., strokeWeight: 2 }` | `{ color: 'Black', weight: 2 }` |
|
|
102
102
|
| `align` value | `align: 'left'` | `align: 'LEFT'` (uppercase) |
|
|
103
|
+
| `addImage` without await | `slide.addImage(...)` | `await slide.addImage(...)` — async, images silently missing without await |
|
|
103
104
|
|
|
104
105
|
### Hex color helper (for shape fills)
|
|
105
106
|
|
|
@@ -151,7 +152,7 @@ slide.addDiamond(x, y, width, height, opts)
|
|
|
151
152
|
slide.addTriangle(x, y, width, height, opts)
|
|
152
153
|
slide.addStar(x, y, width, height, opts)
|
|
153
154
|
slide.addLine(x1, y1, x2, y2, opts) // opts: color, weight
|
|
154
|
-
slide.addImage(x, y, width, height, pathOrBuf, opts) // opts: cornerRadius, opacity
|
|
155
|
+
await slide.addImage(x, y, width, height, pathOrBuf, opts) // ⚠️ ASYNC — must use await, opts: cornerRadius, opacity
|
|
155
156
|
slide.addTable(data, opts) // 2D string array; opts: x, y, width, colWidths, rowHeight
|
|
156
157
|
slide.addSVG(x, y, width, svgPathOrBuf, opts)
|
|
157
158
|
```
|