@neo4j-nvl/base 0.3.4 → 0.3.5

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.
@@ -24,10 +24,7 @@ interface NvlMouseEvent extends MouseEvent {
24
24
  * const nodes = [{ id: '1' }, { id: '2' }]
25
25
  * const relationships = [{ id: '12', from: '1', to: '2' }]
26
26
  *
27
- * const options = {
28
- * layout: 'forceDirected',
29
- * initialZoom: 0.5
30
- * }
27
+ * const options = { initialZoom: 0.5 }
31
28
  *
32
29
  * const callbacks = {
33
30
  * onLayoutDone: () => console.log('Layout done')
@@ -35,8 +32,6 @@ interface NvlMouseEvent extends MouseEvent {
35
32
  *
36
33
  * const nvl = new NVL(document.getElementById('frame'), nodes, relationships, options, callbacks)
37
34
  * ```
38
- *
39
- * For more examples, head to the {@link https://neo4j.com/docs/nvl/current/core-library/ NVL Base documentation page}.
40
35
  */
41
36
  declare class NVL {
42
37
  #private;
@@ -16,7 +16,7 @@ export declare class ForceCytoLayout {
16
16
  getShouldUpdate(): boolean;
17
17
  getComputing(): boolean;
18
18
  updateNodes(positionList: any): void;
19
- getNodePositions(data: any): import("../..").Node[];
19
+ getNodePositions(data: any): import("../../types/graph-element").Node[];
20
20
  terminateUpdate(): void;
21
21
  destroy(): void;
22
22
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@neo4j-nvl/base",
3
- "version": "0.3.4",
3
+ "version": "0.3.5",
4
4
  "license": "SEE LICENSE IN 'LICENSE.txt'",
5
5
  "homepage": "https://neo4j.com/docs/nvl/current/",
6
6
  "description": "Base library for the Neo4j Visualization Library",
@@ -19,16 +19,16 @@
19
19
  "dist"
20
20
  ],
21
21
  "scripts": {
22
- "build": "tsc && webpack",
22
+ "build": "yarn global:tsc && webpack",
23
23
  "watch": "concurrently 'tsc -w' 'webpack -w' -k -n 'tsc,webpack' -c 'cyan,magenta'",
24
- "test": "jest",
25
- "eslint": "eslint ./src/ --plugin only-warn",
24
+ "test": "yarn global:jest",
25
+ "eslint": "yarn global:eslint ./src/ --plugin only-warn",
26
26
  "coverage": "yarn test --coverage --silent",
27
27
  "prepack": "cp ../../LICENSE.txt ./",
28
28
  "postpack": "rm LICENSE.txt"
29
29
  },
30
30
  "dependencies": {
31
- "@neo4j-nvl/layout-workers": "0.3.4",
31
+ "@neo4j-nvl/layout-workers": "0.3.5",
32
32
  "@segment/analytics-next": "^1.70.0",
33
33
  "color-string": "^1.9.1",
34
34
  "d3-force": "^3.0.0",
@@ -50,16 +50,8 @@
50
50
  "@types/tinycolor2": "^1.4.6",
51
51
  "babel-loader": "^8.2.5",
52
52
  "copy-webpack-plugin": "^11.0.0",
53
- "eslint": "^8.38.0",
54
- "jest": "^29.7.0",
55
53
  "typedoc": "^0.23.15",
56
- "typescript": "^5.4.5",
57
54
  "webpack": "^5.75.0",
58
55
  "webpack-cli": "^5.0.0"
59
- },
60
- "peerDependencies": {
61
- "eslint": "*",
62
- "jest": "*",
63
- "typescript": "*"
64
56
  }
65
57
  }