@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 +1 -1
- package/package.json +1 -1
- package/src/canvas.ts +1 -1
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 ??
|
|
387
|
+
.cooldownTime(this.config.cooldownTime ?? 2000)
|
|
388
388
|
.enableNodeDrag(true)
|
|
389
389
|
.enableZoomInteraction(true)
|
|
390
390
|
.enablePanInteraction(true)
|
package/package.json
CHANGED
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 ??
|
|
494
|
+
.cooldownTime(this.config.cooldownTime ?? 2000)
|
|
495
495
|
.enableNodeDrag(true)
|
|
496
496
|
.enableZoomInteraction(true)
|
|
497
497
|
.enablePanInteraction(true)
|