@neo4j-nvl/base 1.2.0 → 1.2.2

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 CHANGED
@@ -2,6 +2,35 @@
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
+ ## [1.2.2] - 2026-09-07
6
+
7
+ This 1.2.2 patch release adds migration warnings for breaking changes planned for the next major release.
8
+
9
+ ### Added
10
+ * `styling.overlayLineColor` for overlay UI stroke color (e.g. minimap viewport box).
11
+ * Note in documentation on changes to client/screen coordinates on `NVL.getNodes()` and `onLayoutStep` `x`/`y`, moving screen coordinates to `clientPosition`.
12
+
13
+ ### Deprecated
14
+ * `styling.minimapViewportBoxColor` in favour of `styling.overlayLineColor` (old option still works as a fallback).
15
+ * `ForceDirectedOptions.intelWorkaround` (upgrade to WebGL2 in the next major release removes the need for it).
16
+ * Top-level React wrapper `layout` / `layoutOptions` props in favour of `nvlOptions.layout` / `nvlOptions.layoutOptions`.
17
+
18
+ ## [1.2.1] - 2026-07-28
19
+
20
+ This 1.2.1 patch release contains several fixes and accessibility improvements.
21
+
22
+ ### Added
23
+ * Outline when the canvas is focused while using the keyboard interaction handlers.
24
+
25
+ ### Changed
26
+ * Renamed links in README from Explore to Neo4j Bloom.
27
+
28
+ ### Fixed
29
+ * Aligned padding on svg and png export.
30
+ * Aligned start behaviour of box and lasso select interaction handlers.
31
+ * Fixed static image wrapper React component returning incorrect height when using SVG format.
32
+ * Fixed self-referencing relationship captions being misplaced on downward curves.
33
+
5
34
  ## [1.2.0] - 2026-05-27
6
35
 
7
36
  This 1.2.0 release introduces a new keyboard interaction handler and SVG support for the static image wrapper React component. It also includes several performance improvements for clustering and text/icon rendering, as well as several bug fixes.
package/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Neo4j Visualization Library
2
2
 
3
- Welcome to the Neo4j Visualization Library, NVL for short. NVL is a collection of libraries that can be used to build custom graph visualizations like those used in [Neo4j Bloom and Explore(powered by Bloom)](https://neo4j.com/product/bloom/). NVL is written in TypeScript and can be used in any JavaScript project. It is also available as a React component that can be used in React applications.
3
+ Welcome to the Neo4j Visualization Library, NVL for short. NVL is a collection of libraries that can be used to build custom graph visualizations like those used in [Neo4j Bloom](https://neo4j.com/product/bloom/). NVL is written in TypeScript and can be used in any JavaScript project. It is also available as a React component that can be used in React applications.
4
4
 
5
5
  ## Consuming the library
6
6