Skip to content

Commit 39e6639

Browse files
Merge pull request #141 from neo4j-labs/add-show-graph
Add show graph button
2 parents 20bf6f1 + 4401521 commit 39e6639

26 files changed

+1076
-7
lines changed
Binary file not shown.

frontend/nvl-modules/neo4j-nvl-core/core.d.ts

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

frontend/nvl-modules/neo4j-nvl-core/core.js

Lines changed: 2 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
/*! *****************************************************************************
2+
Copyright (c) Microsoft Corporation. All rights reserved.
3+
Licensed under the Apache License, Version 2.0 (the "License"); you may not use
4+
this file except in compliance with the License. You may obtain a copy of the
5+
License at http://www.apache.org/licenses/LICENSE-2.0
6+
7+
THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
8+
KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED
9+
WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,
10+
MERCHANTABLITY OR NON-INFRINGEMENT.
11+
12+
See the Apache Version 2.0 License for specific language governing permissions
13+
and limitations under the License.
14+
***************************************************************************** */
15+
16+
/*! regenerator-runtime -- Copyright (c) 2014-present, Facebook, Inc. -- license (MIT): https://github.com/facebook/regenerator/blob/main/LICENSE */
17+
18+
/**
19+
* @license
20+
* Lodash <https://lodash.com/>
21+
* Copyright OpenJS Foundation and other contributors <https://openjsf.org/>
22+
* Released under MIT license <https://lodash.com/license>
23+
* Based on Underscore.js 1.8.3 <http://underscorejs.org/LICENSE>
24+
* Copyright Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors
25+
*/
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{
2+
"name": "@neo4j-nvl/core",
3+
"main": "./core.js",
4+
"version": "0.2.53",
5+
"license": "SEE LICENSE IN 'Neo4j Early Access Agreement - Visualization Library.pdf'",
6+
"dependencies": {
7+
"@neo4j-bloom/dagre": "file:./neo4j-bloom-dagre.tgz",
8+
"@neo4j-nvl/layout-workers": "file:./neo4j-nvl-layout-workers.tgz"
9+
}
10+
}
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
This module is a collection of decorator classes that can be used to add interaction events to an NVL instance. The decorators are applied to the NVL class. You can find documentation for the decorators in the usage documentation of each class.
Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
{
2+
"name": "@neo4j-nvl/interaction-handlers",
3+
"version": "0.2.56",
4+
"license": "SEE LICENSE IN 'Neo4j Early Access Agreement - Visualization Library.pdf'",
5+
"main": "lib/index.js",
6+
"types": "lib/index.d.ts",
7+
"files": [
8+
"Neo4j Early Access Agreement - Visualization Library.pdf",
9+
"lib"
10+
],
11+
"scripts": {
12+
"prebuild": "rm -rf lib/",
13+
"build": "tsc",
14+
"test": "jest",
15+
"prepack": "cp ../../Neo4j\\ Early\\ Access\\ Agreement\\ -\\ Visualization\\ Library.pdf ./",
16+
"postpack": "rm Neo4j\\ Early\\ Access\\ Agreement\\ -\\ Visualization\\ Library.pdf"
17+
},
18+
"typedoc": {
19+
"entryPoint": "./src/index.ts",
20+
"readmeFile": "./README.md",
21+
"displayName": "Interaction Handlers",
22+
"tsconfig": "./tsconfig.json"
23+
},
24+
"engines": {
25+
"yarn": "^1.10.1"
26+
},
27+
"dependencies": {
28+
"concaveman": "^1.2.1",
29+
"lodash": "4.17.21"
30+
},
31+
"devDependencies": {
32+
"@testing-library/jest-dom": "^5.16.5",
33+
"@testing-library/react": "^13.4.0",
34+
"@types/concaveman": "1.1.6",
35+
"@types/lodash": "4.14.202"
36+
}
37+
}
Binary file not shown.
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
This module exports a collection of React components that are build around the NVL class. They act as wrappers around the NVL class that provide a React interface to the NVL class.

0 commit comments

Comments
 (0)