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.
Files changed (2) hide show
  1. package/dist/index.d.ts +3 -1
  2. 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;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "quixotic-gol",
3
- "version": "0.1.7",
3
+ "version": "0.1.8",
4
4
  "description": "",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",