@neo4j-nvl/base 0.3.2-ea823910 → 0.3.3-9ea79f41
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/dist/base.mjs +1 -1
- package/dist/types/index.d.ts +1 -13
- package/package.json +3 -3
package/dist/types/index.d.ts
CHANGED
|
@@ -38,12 +38,7 @@ interface NvlMouseEvent extends MouseEvent {
|
|
|
38
38
|
* ```
|
|
39
39
|
*/
|
|
40
40
|
declare class NVL {
|
|
41
|
-
private
|
|
42
|
-
private readonly performance;
|
|
43
|
-
private visState;
|
|
44
|
-
private nvlController;
|
|
45
|
-
private options;
|
|
46
|
-
private segmentTrack;
|
|
41
|
+
#private;
|
|
47
42
|
/**
|
|
48
43
|
* Creates a new NVL instance.
|
|
49
44
|
* @constructor
|
|
@@ -364,13 +359,6 @@ declare class NVL {
|
|
|
364
359
|
* @returns The container element of the NVL instance.
|
|
365
360
|
*/
|
|
366
361
|
getContainer(): HTMLElement;
|
|
367
|
-
private initialise;
|
|
368
|
-
private setupLogging;
|
|
369
|
-
private nodeRemoval;
|
|
370
|
-
private edgeRemoval;
|
|
371
|
-
private update;
|
|
372
|
-
private validateNodes;
|
|
373
|
-
private validateRelationships;
|
|
374
362
|
private checkWebGLCompatibility;
|
|
375
363
|
}
|
|
376
364
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@neo4j-nvl/base",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.3-9ea79f41",
|
|
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",
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
"tsconfig": "./tsconfig.json"
|
|
35
35
|
},
|
|
36
36
|
"dependencies": {
|
|
37
|
-
"@neo4j-nvl/layout-workers": "0.3.
|
|
37
|
+
"@neo4j-nvl/layout-workers": "0.3.3-9ea79f41",
|
|
38
38
|
"@segment/analytics-next": "^1.70.0",
|
|
39
39
|
"color-string": "^1.9.1",
|
|
40
40
|
"d3-force": "^3.0.0",
|
|
@@ -68,5 +68,5 @@
|
|
|
68
68
|
"jest": "*",
|
|
69
69
|
"typescript": "*"
|
|
70
70
|
},
|
|
71
|
-
"stableVersion": "0.3.
|
|
71
|
+
"stableVersion": "0.3.3"
|
|
72
72
|
}
|