@neo4j-nvl/base 0.3.3 → 0.3.4-b33c5deb
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/README.md +8 -7
- package/dist/base.mjs +1 -1
- package/dist/types/index.d.ts +32 -46
- package/dist/types/layouts/forcedirectedlayout/cosebilkentlayout/CoseBilkentLayout.d.ts +2 -1
- package/dist/types/layouts/hierarchicallayout/HierarchicalLayout.d.ts +1 -0
- package/dist/types/modules/CallbackHelper.d.ts +1 -1
- package/dist/types/modules/state.d.ts +4 -5
- package/dist/types/types/graph-element.d.ts +10 -10
- package/dist/types/utils/canvasManagement.d.ts +1 -1
- package/dist/types/utils/geometry.d.ts +5 -5
- package/package.json +4 -9
package/dist/types/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { ExternalCallbacks } from './modules/ExternalCallbackHandler';
|
|
2
2
|
import type { ForceDirectedOptions, HierarchicalOptions, Layout, LayoutOptions, NvlOptions, NvlState, Renderer, ZoomOptions } from './modules/state';
|
|
3
|
-
import { ForceDirectedLayoutType, FreeLayoutType, GridLayoutType, HierarchicalLayoutType, d3ForceLayoutType } from './modules/state';
|
|
3
|
+
import { CanvasRendererType, ForceDirectedLayoutType, FreeLayoutType, GridLayoutType, HierarchicalLayoutType, WebGLRendererType, d3ForceLayoutType } from './modules/state';
|
|
4
4
|
import type { StyledCaption } from './renderers/canvasrenderer/types';
|
|
5
5
|
import { drawCircleBand } from './renderers/canvasrenderer/util';
|
|
6
6
|
import type { Node, PartialNode, PartialRelationship, Relationship } from './types/graph-element';
|
|
@@ -21,32 +21,27 @@ interface NvlMouseEvent extends MouseEvent {
|
|
|
21
21
|
* ```ts
|
|
22
22
|
* import { NVL } from '@neo4j-nvl/base'
|
|
23
23
|
*
|
|
24
|
-
* const nodes = [
|
|
25
|
-
*
|
|
26
|
-
*
|
|
27
|
-
* ]
|
|
28
|
-
* const relationships = [
|
|
29
|
-
* { id: '12', from: '1', to: '2' }
|
|
30
|
-
* ]
|
|
24
|
+
* const nodes = [{ id: '1' }, { id: '2' }]
|
|
25
|
+
* const relationships = [{ id: '12', from: '1', to: '2' }]
|
|
26
|
+
*
|
|
31
27
|
* const options = {
|
|
28
|
+
* layout: 'forceDirected',
|
|
32
29
|
* initialZoom: 0.5
|
|
33
30
|
* }
|
|
31
|
+
*
|
|
34
32
|
* const callbacks = {
|
|
35
33
|
* onLayoutDone: () => console.log('Layout done')
|
|
36
34
|
* }
|
|
35
|
+
*
|
|
37
36
|
* const nvl = new NVL(document.getElementById('frame'), nodes, relationships, options, callbacks)
|
|
38
37
|
* ```
|
|
38
|
+
*
|
|
39
|
+
* For more examples, head to the {@link https://neo4j.com/docs/nvl/current/core-library/ NVL Base documentation page}.
|
|
39
40
|
*/
|
|
40
41
|
declare class NVL {
|
|
41
|
-
private
|
|
42
|
-
private readonly performance;
|
|
43
|
-
private visState;
|
|
44
|
-
private nvlController;
|
|
45
|
-
private options;
|
|
46
|
-
private segmentTrack;
|
|
42
|
+
#private;
|
|
47
43
|
/**
|
|
48
44
|
* Creates a new NVL instance.
|
|
49
|
-
* @constructor
|
|
50
45
|
* @param {HTMLElement} frame - The DOM element to display the graph in
|
|
51
46
|
* @param {Node[]} nvlNodes - An Array of nodes
|
|
52
47
|
* @param {Relationship[]} nvlRels - An Array of relationships
|
|
@@ -58,16 +53,16 @@ declare class NVL {
|
|
|
58
53
|
* Restarts the NVL instance.
|
|
59
54
|
* @param {NvlOptions} options - new options for the NVL instance
|
|
60
55
|
* @param {boolean} retainPositions - whether or not to retain the current node positions
|
|
61
|
-
*
|
|
56
|
+
* New options will be merged with current options
|
|
62
57
|
*/
|
|
63
58
|
restart(options?: NvlOptions, retainPositions?: boolean): void;
|
|
64
59
|
/**
|
|
65
60
|
* Adds nodes and relationships to NVL and updates existing nodes and relationships.
|
|
66
61
|
* @param {Node[] | PartialNode[]} nodes - An Array of nodes to be added or updated
|
|
67
62
|
* @param {Relationship[] | PartialRelationship[]} relationships - An Array of relationships to be added or updated
|
|
68
|
-
*
|
|
63
|
+
* To update nodes or relationships, they must have an id that matches the id of the
|
|
69
64
|
* node or relationship to be updated.
|
|
70
|
-
*
|
|
65
|
+
* Only the properties that are provided will be updated.
|
|
71
66
|
* If an existing property is not provided, it will not be changed.
|
|
72
67
|
* @example
|
|
73
68
|
* Adding and updating nodes and relationships
|
|
@@ -104,10 +99,10 @@ declare class NVL {
|
|
|
104
99
|
* Updates relationships in the current scene with the provided array of nodes and relationships.
|
|
105
100
|
* @param {Node[] | PartialNode[]} nodes The updated nodes.
|
|
106
101
|
* @param {Relationship[] | PartialRelationship[]} relationships The updated relationships.
|
|
107
|
-
*
|
|
108
|
-
*
|
|
102
|
+
* Ignores any nodes or relationships that do not exist in the current scene.
|
|
103
|
+
* To update nodes or relationships, they must have an id that matches the id of the
|
|
109
104
|
* node or relationship to be updated.
|
|
110
|
-
*
|
|
105
|
+
* Only the properties that are provided will be updated.
|
|
111
106
|
* If an existing property is not provided, it will not be changed.
|
|
112
107
|
* @example
|
|
113
108
|
* Updating nodes and relationships
|
|
@@ -136,7 +131,7 @@ declare class NVL {
|
|
|
136
131
|
/**
|
|
137
132
|
* Removes the specified nodes from the current scene.
|
|
138
133
|
* @param {string[]} nodeIds The node ids to be removed.
|
|
139
|
-
*
|
|
134
|
+
* Adjacent relationships will also be removed.
|
|
140
135
|
*/
|
|
141
136
|
removeNodesWithIds(nodeIds: string[]): void;
|
|
142
137
|
/**
|
|
@@ -145,9 +140,8 @@ declare class NVL {
|
|
|
145
140
|
*/
|
|
146
141
|
removeRelationshipsWithIds(relationshipIds: string[]): void;
|
|
147
142
|
/**
|
|
148
|
-
* Returns
|
|
149
|
-
* @
|
|
150
|
-
* @returns {Node} The node or undefined if there is no node with the given id.
|
|
143
|
+
* Returns all nodes that is currently stored in the visualisation.
|
|
144
|
+
* @returns {Node[]} The array of nodes.
|
|
151
145
|
*/
|
|
152
146
|
getNodes(): Node[];
|
|
153
147
|
/**
|
|
@@ -190,7 +184,7 @@ declare class NVL {
|
|
|
190
184
|
* Updates pan and zoom fit the specified nodes in the viewport.
|
|
191
185
|
* @param {string[]} nodeIds The ids of the nodes to fit on the screen,
|
|
192
186
|
* @param {NvlState['zoomOptions']} zoomOptions specific options on how to transition the zoom
|
|
193
|
-
*
|
|
187
|
+
* If the zoom level required to fit the provided nodes is outside of the range provided by the
|
|
194
188
|
* {@link NvlOptions.minZoom} and {@link NvlOptions.maxZoom} options,
|
|
195
189
|
* and {@link NvlOptions.allowDynamicMinZoom} is set to `false`,
|
|
196
190
|
* the zoom level will be set to the closest valid zoom level,
|
|
@@ -216,9 +210,8 @@ declare class NVL {
|
|
|
216
210
|
/**
|
|
217
211
|
* Restarts NVL with or without WebGL support.
|
|
218
212
|
* @param {boolean} disabled Whether or not WebGL should be disabled.
|
|
219
|
-
*
|
|
213
|
+
* Not to be confused with {@link setUseWebGLRenderer}, which only affects the rendering method
|
|
220
214
|
* @experimental
|
|
221
|
-
* @internal
|
|
222
215
|
*/
|
|
223
216
|
setDisableWebGL(disabled?: boolean): void;
|
|
224
217
|
/**
|
|
@@ -243,7 +236,7 @@ declare class NVL {
|
|
|
243
236
|
setLayoutOptions(options: LayoutOptions): void;
|
|
244
237
|
/**
|
|
245
238
|
* Returns the nodes that are currently in the visualization.
|
|
246
|
-
*
|
|
239
|
+
* The `rels` property of the returned object is always empty.
|
|
247
240
|
* @returns {{ nodes: Node[], rels: Relationship [] }} An array of the nodes in the visualization.
|
|
248
241
|
*/
|
|
249
242
|
getNodesOnScreen(): {
|
|
@@ -273,7 +266,7 @@ declare class NVL {
|
|
|
273
266
|
* @param {{ filename: string, backgroundColor: string }} options The filename and background color of the png.
|
|
274
267
|
* @param {string} options.filename The filename of the png file.
|
|
275
268
|
* @param {string} options.backgroundColor - The background color of the png file.
|
|
276
|
-
*
|
|
269
|
+
* The size of the png file will be the size of the canvas in the DOM.
|
|
277
270
|
*/
|
|
278
271
|
saveToFile(options: {
|
|
279
272
|
filename?: string;
|
|
@@ -284,7 +277,7 @@ declare class NVL {
|
|
|
284
277
|
* @param {{ filename: string, backgroundColor: string }} options The filename and background color of the png.
|
|
285
278
|
* @param {string} options.filename The filename of the png file.
|
|
286
279
|
* @param {string} options.backgroundColor - The background color of the png file.
|
|
287
|
-
*
|
|
280
|
+
* The size of the png file will be as large as the entire graph at the default zoom level.
|
|
288
281
|
* Can result in a very large file.
|
|
289
282
|
*/
|
|
290
283
|
saveFullGraphToLargeFile(options: {
|
|
@@ -294,13 +287,13 @@ declare class NVL {
|
|
|
294
287
|
/**
|
|
295
288
|
* Sets the zoom of the viewport to a specific value.
|
|
296
289
|
* @param {number} absolute The desired zoom level.
|
|
297
|
-
*
|
|
290
|
+
* When updating both the zoom level and pan coordinates,
|
|
298
291
|
* use {@link setZoomAndPan} instead of calling {@link setZoom} and {@link setPan}
|
|
299
292
|
* separately to avoid jittering.
|
|
300
|
-
*
|
|
293
|
+
* If the zoom level is outside of the range provided by the
|
|
301
294
|
* {@link NvlOptions.minZoom} and {@link NvlOptions.maxZoom} options,
|
|
302
295
|
* the zoom level will be set to the closest valid zoom level.
|
|
303
|
-
*
|
|
296
|
+
* If {@link NvlOptions.allowDynamicMinZoom} is set to true,
|
|
304
297
|
* the {@link NvlOptions.minZoom} option will be ignored of the current graph does not fit the viewport.
|
|
305
298
|
*/
|
|
306
299
|
setZoom(absolute: number): void;
|
|
@@ -308,7 +301,7 @@ declare class NVL {
|
|
|
308
301
|
* Sets the zoom of the viewport to a specific value.
|
|
309
302
|
* @param {number} panX The desired panX value.
|
|
310
303
|
* @param {number} panY The desired panY value.
|
|
311
|
-
*
|
|
304
|
+
* When updating both the zoom level and pan coordinates,
|
|
312
305
|
* use {@link setZoomAndPan} instead of calling {@link setZoom} and {@link setPan}
|
|
313
306
|
* separately to avoid jittering.
|
|
314
307
|
*/
|
|
@@ -318,11 +311,11 @@ declare class NVL {
|
|
|
318
311
|
* @param {number} zoom The desired zoom level.
|
|
319
312
|
* @param {number} panX The desired panX value.
|
|
320
313
|
* @param {number} panY The desired panY value.
|
|
321
|
-
*
|
|
322
|
-
*
|
|
314
|
+
* When only updating the zoom level or pan coordinates, use {@link setZoom} or {@link setPan} instead.
|
|
315
|
+
* If the zoom level is outside of the range provided by the
|
|
323
316
|
* {@link NvlOptions.minZoom} and {@link NvlOptions.maxZoom} options,
|
|
324
317
|
* the zoom level will be set to the closest valid zoom level.
|
|
325
|
-
*
|
|
318
|
+
* If {@link NvlOptions.allowDynamicMinZoom} is set to true,
|
|
326
319
|
* the {@link NvlOptions.minZoom} option will be ignored of the current graph does not fit the viewport.
|
|
327
320
|
*/
|
|
328
321
|
setZoomAndPan(zoom: number, panX: number, panY: number): void;
|
|
@@ -364,13 +357,6 @@ declare class NVL {
|
|
|
364
357
|
* @returns The container element of the NVL instance.
|
|
365
358
|
*/
|
|
366
359
|
getContainer(): HTMLElement;
|
|
367
|
-
private initialise;
|
|
368
|
-
private setupLogging;
|
|
369
|
-
private nodeRemoval;
|
|
370
|
-
private edgeRemoval;
|
|
371
|
-
private update;
|
|
372
|
-
private validateNodes;
|
|
373
|
-
private validateRelationships;
|
|
374
360
|
private checkWebGLCompatibility;
|
|
375
361
|
}
|
|
376
362
|
/**
|
|
@@ -381,5 +367,5 @@ declare const colorMapperFunctions: {
|
|
|
381
367
|
textColorForBackground: (color: string) => string;
|
|
382
368
|
};
|
|
383
369
|
export default NVL;
|
|
384
|
-
export type { NvlOptions, Renderer, Node, Relationship, PartialNode, PartialRelationship, Layout, LayoutOptions, ForceDirectedOptions, HierarchicalOptions, ExternalCallbacks, HitTargets, HitTargetNode, HitTargetRelationship, Point, NvlMouseEvent, ZoomOptions, StyledCaption };
|
|
370
|
+
export type { NvlOptions, Renderer, Node, Relationship, PartialNode, PartialRelationship, Layout, LayoutOptions, ForceDirectedOptions, HierarchicalOptions, ExternalCallbacks, HitTargets, HitTargetNode, HitTargetRelationship, Point, NvlMouseEvent, ZoomOptions, StyledCaption, WebGLRendererType, CanvasRendererType };
|
|
385
371
|
export { NVL, colorMapperFunctions, CompatibilityError, ForceDirectedLayoutType, HierarchicalLayoutType, GridLayoutType, FreeLayoutType, d3ForceLayoutType, drawCircleBand };
|
|
@@ -15,12 +15,13 @@ export declare class CoseBilkentLayout extends AnimatedLayout {
|
|
|
15
15
|
cytoCompleteCallback: () => void;
|
|
16
16
|
computing: boolean;
|
|
17
17
|
pendingLayoutData: LayoutData;
|
|
18
|
-
worker: SharedWorker;
|
|
18
|
+
worker: SharedWorker | any;
|
|
19
19
|
constructor(config: {
|
|
20
20
|
state: NvlState;
|
|
21
21
|
cytoCompleteCallback?: () => void;
|
|
22
22
|
animationCompleteCallback?: () => void;
|
|
23
23
|
});
|
|
24
|
+
setupWorker(): Promise<unknown>;
|
|
24
25
|
setOptions(): void;
|
|
25
26
|
update(refreshPositions?: boolean, updateMobXNodes?: Node[], updateMobXRelationships?: Relationship[]): void;
|
|
26
27
|
getShouldUpdate(): boolean;
|
|
@@ -15,6 +15,7 @@ export declare class HierarchicalLayout extends AnimatedLayout {
|
|
|
15
15
|
private directionChanged;
|
|
16
16
|
private packingChanged;
|
|
17
17
|
constructor(config: HierarchicalLayoutConfig);
|
|
18
|
+
setupWorker(): Promise<unknown>;
|
|
18
19
|
setOptions(options: LayoutOptions): void;
|
|
19
20
|
update(refreshPositions?: boolean): void;
|
|
20
21
|
getShouldUpdate(): boolean;
|
|
@@ -19,7 +19,7 @@ export declare class CallbackHelper {
|
|
|
19
19
|
* Register a callback function to be called when an event of that name happens
|
|
20
20
|
* @param {string} name The name of the callback to register
|
|
21
21
|
* @param {function} callback A function that will be called when an event of that name happens
|
|
22
|
-
*
|
|
22
|
+
* If other callbacks are already registered for that name it is added to the list
|
|
23
23
|
*/
|
|
24
24
|
register(name: keyof ExternalCallbacks, callback: CallbackFunction): void;
|
|
25
25
|
/**
|
|
@@ -117,11 +117,11 @@ export interface NvlOptions {
|
|
|
117
117
|
/**
|
|
118
118
|
* Whether or not to dynamically allow decreasing minimum zoom value
|
|
119
119
|
* if current graph does not fit on screen at minimum zoom.
|
|
120
|
-
*
|
|
120
|
+
* When set to true, zoom and fit operations will allow zooming out
|
|
121
121
|
* further than the minimum zoom value if the graph does not fit on screen.
|
|
122
122
|
* When set to false, zoom and fit operations will stop at the minimum zoom value,
|
|
123
123
|
* even if the full graph does not fit on screen at that zoom level.
|
|
124
|
-
* @
|
|
124
|
+
* @defaultValue true
|
|
125
125
|
*/
|
|
126
126
|
allowDynamicMinZoom?: boolean;
|
|
127
127
|
/**
|
|
@@ -143,14 +143,14 @@ export interface NvlOptions {
|
|
|
143
143
|
/**
|
|
144
144
|
* @deprecated use {@link renderer} instead
|
|
145
145
|
* Whether to user the Canvas or WebGL renderer
|
|
146
|
-
*
|
|
146
|
+
* Will be ignored when {@link renderer} is set
|
|
147
147
|
*/
|
|
148
148
|
useWebGL?: boolean;
|
|
149
149
|
/**
|
|
150
150
|
* What renderer to use
|
|
151
151
|
* Possible values are 'webgl' or 'canvas'
|
|
152
152
|
* @defaultValue 'webgl'
|
|
153
|
-
*
|
|
153
|
+
* WebGL renderer uses GPU and has better performance.
|
|
154
154
|
* Captions and arrowheads are only displayed when using the canvas renderer.
|
|
155
155
|
*/
|
|
156
156
|
renderer?: Renderer;
|
|
@@ -177,7 +177,6 @@ export interface NvlOptions {
|
|
|
177
177
|
selectedBorderColor?: string;
|
|
178
178
|
/**
|
|
179
179
|
* @internal
|
|
180
|
-
* @experimental
|
|
181
180
|
* Defines a time limit for how long layout iterations may run
|
|
182
181
|
*/
|
|
183
182
|
layoutTimeLimit?: number;
|
|
@@ -7,8 +7,8 @@ import type { StyledCaption } from '../renderers/canvasrenderer/types';
|
|
|
7
7
|
interface GraphElement {
|
|
8
8
|
/**
|
|
9
9
|
* The id of the current node or relationship.
|
|
10
|
-
*
|
|
11
|
-
*
|
|
10
|
+
* Ids need to be unique across all nodes and relationships.
|
|
11
|
+
* Ids need to be strings and cannot be empty.
|
|
12
12
|
*/
|
|
13
13
|
readonly id: string;
|
|
14
14
|
color?: string;
|
|
@@ -26,23 +26,23 @@ interface GraphElement {
|
|
|
26
26
|
captionSize?: number;
|
|
27
27
|
/**
|
|
28
28
|
* The caption align.
|
|
29
|
-
*
|
|
29
|
+
* Has no affect on self-referring relationships.
|
|
30
30
|
*/
|
|
31
31
|
captionAlign?: 'top' | 'bottom' | 'center';
|
|
32
32
|
/**
|
|
33
33
|
* The caption text and font style.
|
|
34
|
-
*
|
|
34
|
+
* Captions are only visible when using the 'canvas' renderer.
|
|
35
35
|
*/
|
|
36
36
|
captions?: StyledCaption[];
|
|
37
37
|
/**
|
|
38
38
|
* An icon to be displayed anywhere on top of the graph element.
|
|
39
|
-
*
|
|
39
|
+
* Icons are expected to be square.
|
|
40
40
|
*/
|
|
41
41
|
overlayIcon?: {
|
|
42
42
|
url: string;
|
|
43
43
|
/**
|
|
44
44
|
* The position of the icon relative to the node or relationship.
|
|
45
|
-
*
|
|
45
|
+
* The position is a percentage of the node or relationship size.
|
|
46
46
|
* `[1, 1]` is the bottom right corner of the node or relationship.
|
|
47
47
|
* `[-1, -1]` is the top left corner of the node or relationship.
|
|
48
48
|
* @defaultValue `[0, 0]`, the center of the node or relationship.
|
|
@@ -50,7 +50,7 @@ interface GraphElement {
|
|
|
50
50
|
position?: number[];
|
|
51
51
|
/**
|
|
52
52
|
* The size of the icon relative to the node size or relationship caption size.
|
|
53
|
-
*
|
|
53
|
+
* The size is a percentage of the node size or relationship caption size.
|
|
54
54
|
* @defaultValue `1`, the same size as the node size or relationship caption size.
|
|
55
55
|
*/
|
|
56
56
|
size?: number;
|
|
@@ -73,9 +73,9 @@ interface Node extends GraphElement {
|
|
|
73
73
|
activated?: boolean;
|
|
74
74
|
/**
|
|
75
75
|
* The url to an icon to display inside the node.
|
|
76
|
-
*
|
|
76
|
+
* Icons are expected to be black. If the node's background color is dark,
|
|
77
77
|
* the icon will be inverted to white.
|
|
78
|
-
*
|
|
78
|
+
* Icons are expected to be square.
|
|
79
79
|
*/
|
|
80
80
|
icon?: string;
|
|
81
81
|
/**
|
|
@@ -106,7 +106,7 @@ interface Relationship extends GraphElement {
|
|
|
106
106
|
/**
|
|
107
107
|
* The DOM element to display on top of a relationship caption.
|
|
108
108
|
* @experimental
|
|
109
|
-
*
|
|
109
|
+
* The {@link captionSize} and {@link captionAlign} properties
|
|
110
110
|
* will affect the position and height of the html container element.
|
|
111
111
|
*/
|
|
112
112
|
captionHtml?: HTMLElement;
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Fixes the canvas size to match the parent element's size.
|
|
3
3
|
* @param canvas The canvas to fix the size of.
|
|
4
4
|
*
|
|
5
|
-
*
|
|
5
|
+
* Make sure canvas pixel buffer is 1 to 1 vs screen pixels
|
|
6
6
|
*/
|
|
7
7
|
export declare const fitCanvasSizeToParent: (canvas: HTMLCanvasElement) => void;
|
|
8
8
|
export declare const addWebGLContextLostListener: (canvas: HTMLCanvasElement, contextLostCallback?: (e: WebGLContextEvent) => void) => void;
|
|
@@ -78,9 +78,9 @@ export declare class Segment {
|
|
|
78
78
|
* @param {Point} lineStartToPointVector - The vector from the start of the line to the point.
|
|
79
79
|
* @param {Point} lineVector - The vector of the line.
|
|
80
80
|
* @returns {number} The projection of the point onto the line.
|
|
81
|
-
*
|
|
82
|
-
*
|
|
83
|
-
*
|
|
81
|
+
* The projection ratio is a value between 0 and 1.
|
|
82
|
+
* The projection ratio is 0 if the point is closest to the start of the line.
|
|
83
|
+
* The projection ratio is 1 if the point is closest to the end of the line.
|
|
84
84
|
* @see {@link https://en.wikipedia.org/wiki/Vector_projection}
|
|
85
85
|
*/
|
|
86
86
|
export declare const getProjectionRatio: (lineStartToPointVector: Point, lineVector: Point) => number;
|
|
@@ -90,7 +90,7 @@ export declare const getProjectionRatio: (lineStartToPointVector: Point, lineVec
|
|
|
90
90
|
* @param {Point} lineEnd - The second point of the line.
|
|
91
91
|
* @param {Point} point - The point to calculate the distance to.
|
|
92
92
|
* @returns {number} The distance between the point and the line.
|
|
93
|
-
*
|
|
93
|
+
* If the actual distance does not matter,
|
|
94
94
|
* if you only want to compare what this function
|
|
95
95
|
* returns to other results of this function, you
|
|
96
96
|
* can just return the squared distance instead
|
|
@@ -105,7 +105,7 @@ export declare const getDistanceToLine: (lineStart: Point, lineEnd: Point, point
|
|
|
105
105
|
* @param {Point} p3 - Second point of second line
|
|
106
106
|
* @returns {Point | null} Intersection point
|
|
107
107
|
* @see https://github.com/bit101/CodingMath/blob/master/episode33/parallel.js
|
|
108
|
-
*
|
|
108
|
+
* Returns null if lines are parallel
|
|
109
109
|
*/
|
|
110
110
|
export declare const getIntersection: (p0: Point, p1: Point, p2: Point, p3: Point) => Point | null;
|
|
111
111
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@neo4j-nvl/base",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.4-b33c5deb",
|
|
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",
|
|
@@ -27,14 +27,8 @@
|
|
|
27
27
|
"prepack": "cp ../../LICENSE.txt ./",
|
|
28
28
|
"postpack": "rm LICENSE.txt"
|
|
29
29
|
},
|
|
30
|
-
"typedoc": {
|
|
31
|
-
"entryPoint": "./src/index.ts",
|
|
32
|
-
"readmeFile": "./README.md",
|
|
33
|
-
"displayName": "Base",
|
|
34
|
-
"tsconfig": "./tsconfig.json"
|
|
35
|
-
},
|
|
36
30
|
"dependencies": {
|
|
37
|
-
"@neo4j-nvl/layout-workers": "0.3.
|
|
31
|
+
"@neo4j-nvl/layout-workers": "0.3.4-b33c5deb",
|
|
38
32
|
"@segment/analytics-next": "^1.70.0",
|
|
39
33
|
"color-string": "^1.9.1",
|
|
40
34
|
"d3-force": "^3.0.0",
|
|
@@ -67,5 +61,6 @@
|
|
|
67
61
|
"eslint": "*",
|
|
68
62
|
"jest": "*",
|
|
69
63
|
"typescript": "*"
|
|
70
|
-
}
|
|
64
|
+
},
|
|
65
|
+
"stableVersion": "0.3.4"
|
|
71
66
|
}
|