Skip to content

Commit cf694fe

Browse files
authored
Merge pull request #93 from neo4j/update-nvl
Update nvl fixing layout issue
2 parents 67638dc + 20faceb commit cf694fe

File tree

6 files changed

+49
-112
lines changed

6 files changed

+49
-112
lines changed

docs/extra/getting-started.ipynb

Lines changed: 17 additions & 82 deletions
Large diffs are not rendered by default.

examples/gds-nvl-example.ipynb

Lines changed: 25 additions & 25 deletions
Large diffs are not rendered by default.

js-applet/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "nvl-python-wrapper",
3-
"version": "0.3.6",
3+
"version": "0.3.6-800b1623",
44
"scripts": {
55
"build": "webpack",
66
"postbuild": "cp dist/base.js ../python-wrapper/src/neo4j_viz/resources/nvl_entrypoint"
@@ -14,7 +14,7 @@
1414
"webpack-cli": "^5.0.0"
1515
},
1616
"dependencies": {
17-
"@neo4j-nvl/base": "^0.3.6",
18-
"@neo4j-nvl/interaction-handlers": "^0.3.6"
17+
"@neo4j-nvl/base": "0.3.6-02e96ab6",
18+
"@neo4j-nvl/interaction-handlers": "0.3.6-02e96ab6"
1919
}
2020
}

js-applet/src/index.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,8 @@ class PyNVL {
1818
options: NvlOptions = {},
1919
callbacks = {}
2020
) {
21-
this.nvl = new NVL(frame, nvlNodes, nvlRels, { ...options, disableTelemetry: true }, callbacks)
21+
22+
this.nvl = new NVL(frame, nvlNodes, nvlRels, { ...options, disableTelemetry: true, disableWebWorkers: true, disableAria: true }, callbacks)
2223
this.zoomInteraction = new ZoomInteraction(this.nvl)
2324
this.panInteraction = new PanInteraction(this.nvl)
2425
this.dragNodeInteraction = new DragNodeInteraction(this.nvl)

python-wrapper/src/neo4j_viz/resources/nvl_entrypoint/base.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

scripts/makestyle.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,3 +15,4 @@ if [ "${SKIP_NOTEBOOKS:-false}" == "true" ]; then
1515
fi
1616

1717
python "${GIT_ROOT}/scripts/clean_notebooks.py" -i "${GIT_ROOT}/examples/" -o inplace
18+
python "${GIT_ROOT}/scripts/clean_notebooks.py" -i "${GIT_ROOT}/docs/extra/" -o inplace

0 commit comments

Comments
 (0)