@skydesign/tf 0.3.2 → 0.3.4

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/dist/index.d.ts CHANGED
@@ -199,6 +199,17 @@ export declare interface GraphvizRendererProps {
199
199
  * static SVG pixel-for-pixel (no jump on handover).
200
200
  */
201
201
  initialTransform?: InitialTransform;
202
+ /**
203
+ * Show a draggable canvas overview (minimap) in the bottom-left corner.
204
+ * Dragging or clicking it pans the main canvas (default: false).
205
+ */
206
+ showMinimap?: boolean;
207
+ /**
208
+ * Chain icon shown before every node's address line: a complete <svg>
209
+ * markup string (e.g. renderToStaticMarkup(<CoinEthIcon />)), rendered at
210
+ * 16x16. Omit to hide the icon.
211
+ */
212
+ chainIcon?: string;
202
213
  }
203
214
 
204
215
  /**
@@ -365,6 +376,12 @@ export declare interface RenderOptions {
365
376
  * getBBox-based fit is used.
366
377
  */
367
378
  initialTransform: InitialTransform | undefined;
379
+ /**
380
+ * Chain icon shown before every node's address line: a complete `<svg>`
381
+ * markup string (e.g. from `renderToStaticMarkup(<CoinEthIcon />)`),
382
+ * rendered at 16x16. undefined = no icon, address layout falls back.
383
+ */
384
+ chainIcon: string | undefined;
368
385
  }
369
386
 
370
387
  declare interface RenderResult {