@neo4j-nvl/base 0.3.7 → 0.3.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/CHANGELOG.md +37 -0
- package/dist/base.mjs +1 -1
- package/dist/types/layouts/forcedirectedlayout/physlayout/shaders/multilevel-repulsive-fragment-verlet.d.ts +1 -1
- package/dist/types/utils/constants.d.ts +1 -1
- package/dist/types/utils/jsDriverResultTransformer.d.ts +4 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,43 @@
|
|
|
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.8] - 2025-03-18
|
|
6
|
+
|
|
7
|
+
This release contains a fix for the [NVL result transformer](https://neo4j.com/docs/api/nvl/current/functions/_neo4j_nvl_base.nvlResultTransformer.html).
|
|
8
|
+
|
|
9
|
+
### Fixed
|
|
10
|
+
|
|
11
|
+
* NVL result transformer to be able to handle deeply nested records
|
|
12
|
+
|
|
13
|
+
## [0.3.7] - 2025-02-28
|
|
14
|
+
|
|
15
|
+
### Added
|
|
16
|
+
|
|
17
|
+
* Export zoom functionalities as a named function
|
|
18
|
+
* Add a `positions` prop to the react wrapper
|
|
19
|
+
* Color custimzation options
|
|
20
|
+
* Aria attributes for NVL canvas and option to disable them
|
|
21
|
+
* Option to disable web workers
|
|
22
|
+
|
|
23
|
+
### Changed
|
|
24
|
+
|
|
25
|
+
* Change default threshold when relationship captions are displayed
|
|
26
|
+
* update default selection color and default node color to be aligned with the Neo4j Design Library
|
|
27
|
+
|
|
28
|
+
### Deprecated
|
|
29
|
+
|
|
30
|
+
* `selectedBorderColor` - use `styling.selectedBorderColor` instead
|
|
31
|
+
* `nodeDefaultBorderColor` - use `styling.nodeDefaultBorderColor` instead
|
|
32
|
+
|
|
33
|
+
### Fixed
|
|
34
|
+
|
|
35
|
+
* Fix icon colors not being inverted for dark node colors
|
|
36
|
+
* fix bug where selected border color was not processed if a default border color was not provided in options
|
|
37
|
+
* Address several warnings during initialization
|
|
38
|
+
* Address multi-select callback inconsistencies
|
|
39
|
+
* Canvas renderer performance improvements
|
|
40
|
+
* ensure properties provided via `nvlOptions` are also updated on prop change in React wrappers
|
|
41
|
+
|
|
5
42
|
## [0.3.6] - 2025-02-21
|
|
6
43
|
|
|
7
44
|
NVL 0.3.6 improves the API docs and adds a result transformer for the Neo4j JavaScript Driver, as well as small improvements and bug fixes.
|