@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 +12 -0
- package/dist/index.js +1 -1
- package/dist/index.mjs +364 -362
- package/dist/{render-BqWiqrE9.mjs → render-Dzu8gXVX.mjs} +1287 -1249
- package/dist/render-wQ_Mruy4.js +106 -0
- package/dist/server.d.ts +2 -0
- package/dist/server.js +2 -2
- package/dist/server.mjs +2 -1
- package/package.json +2 -1
- package/dist/render-cE_lsgcR.js +0 -94
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 {
|