@neo4j-nvl/base 0.3.8-e5dee203 → 0.3.9
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/CHANGELOG.md +24 -0
- package/dist/base.mjs +1 -1
- package/dist/types/index.d.ts +5 -2
- package/dist/types/layouts/forcedirectedlayout/physlayout/PhysLayout.d.ts +13 -0
- package/dist/types/modules/NvlController.d.ts +6 -2
- package/dist/types/utils/canvasManagement.d.ts +2 -0
- package/dist/types/utils/constants.d.ts +1 -0
- package/dist/types/utils/graphObjectUtils.d.ts +2 -0
- package/package.json +3 -4
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,30 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to NVL will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).
|
|
4
4
|
|
|
5
|
+
## [0.3.9] - 2025-07-23
|
|
6
|
+
|
|
7
|
+
The 0.3.9 release contains several fixes for NVL's interaction handler and adds a new method to NVL to directly extract image data from an NVL instance:
|
|
8
|
+
|
|
9
|
+
### Added
|
|
10
|
+
|
|
11
|
+
* new export method for image data url called `.getImageDataUrl`
|
|
12
|
+
* new callback triggered when NVL is fully initialized called `onInitialization`.
|
|
13
|
+
|
|
14
|
+
### Changed
|
|
15
|
+
|
|
16
|
+
* updated license agreement in `LICENSE.txt`.
|
|
17
|
+
* prevent zoom interaction handler to zoom in NVL when ctrl or meta key is pressed.
|
|
18
|
+
* improve handling of leaving NVL container while performing selection using the lasso and box interaction handlers.
|
|
19
|
+
|
|
20
|
+
### Fixed
|
|
21
|
+
|
|
22
|
+
* fix error on onDragEnd callback.
|
|
23
|
+
* fix race condition when hovering over an element that is being dismissed.
|
|
24
|
+
* fix nodes moving on clicks.
|
|
25
|
+
* prevent crash when providing non-existent node ids to `.setNodePositions` method.
|
|
26
|
+
* fix slow zoom speed for touchpads in zoom interaction handler.
|
|
27
|
+
* Ensure interaction handlers in react component waits for NVL to be initialised first.
|
|
28
|
+
|
|
5
29
|
## [0.3.8] - 2025-03-18
|
|
6
30
|
|
|
7
31
|
This release contains a fix for the [NVL result transformer](https://neo4j.com/docs/api/nvl/current/functions/_neo4j_nvl_base.nvlResultTransformer.html).
|