quixotic-gol 0.1.7 → 0.1.8
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 +3 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -255,13 +255,15 @@ export declare function renderCustomGraph(container: HTMLDivElement, json: Graph
|
|
|
255
255
|
export declare function setupZoomPan(container: HTMLDivElement): void;
|
|
256
256
|
|
|
257
257
|
/**
|
|
258
|
-
* Text element with optional color
|
|
258
|
+
* Text element with optional color and background
|
|
259
259
|
*/
|
|
260
260
|
export declare interface TextElem {
|
|
261
261
|
/** Text content */
|
|
262
262
|
text: string;
|
|
263
263
|
/** Optional color for the text */
|
|
264
264
|
color?: string;
|
|
265
|
+
/** Optional background color */
|
|
266
|
+
background?: string;
|
|
265
267
|
}
|
|
266
268
|
|
|
267
269
|
export declare function useGraphvizWorker(): UseGraphvizWorkerResult;
|