@skydesign/tf 0.3.3 → 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
@@ -204,6 +204,12 @@ export declare interface GraphvizRendererProps {
204
204
  * Dragging or clicking it pans the main canvas (default: false).
205
205
  */
206
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;
207
213
  }
208
214
 
209
215
  /**
@@ -370,6 +376,12 @@ export declare interface RenderOptions {
370
376
  * getBBox-based fit is used.
371
377
  */
372
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;
373
385
  }
374
386
 
375
387
  declare interface RenderResult {