@falkordb/canvas 0.0.25 → 0.0.26

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/canvas.js CHANGED
@@ -384,7 +384,7 @@ class FalkorDBCanvas extends HTMLElement {
384
384
  .linkVisibility("visible")
385
385
  .nodeVisibility("visible")
386
386
  .cooldownTicks(this.config.cooldownTicks ?? Infinity) // undefined = infinite
387
- .cooldownTime(this.config.cooldownTime ?? 1000)
387
+ .cooldownTime(this.config.cooldownTime ?? 2000)
388
388
  .enableNodeDrag(true)
389
389
  .enableZoomInteraction(true)
390
390
  .enablePanInteraction(true)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@falkordb/canvas",
3
- "version": "0.0.25",
3
+ "version": "0.0.26",
4
4
  "description": "A standalone web component for visualizing FalkorDB graphs using force-directed layouts",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.js",
package/src/canvas.ts CHANGED
@@ -491,7 +491,7 @@ class FalkorDBCanvas extends HTMLElement {
491
491
  .linkVisibility("visible")
492
492
  .nodeVisibility("visible")
493
493
  .cooldownTicks(this.config.cooldownTicks ?? Infinity) // undefined = infinite
494
- .cooldownTime(this.config.cooldownTime ?? 1000)
494
+ .cooldownTime(this.config.cooldownTime ?? 2000)
495
495
  .enableNodeDrag(true)
496
496
  .enableZoomInteraction(true)
497
497
  .enablePanInteraction(true)