1.4.2 • Published 4 months ago

ngx-vflow v1.4.2

Weekly downloads
-
License
MIT
Repository
github
Last release
4 months ago

ngx-vflow is an Angular library for creating node-based applications. It aims to assist you in building anything from a static diagram to a visual editor. You can utilize the default design or apply your own by customizing everything using familiar technologies.

Installation

npm i ngx-vflow --save

Version Compatibility

ngx-vlowAngular
v0.xv16.2.0+
v1.xv17.3.12+

Basic Example

The following code describes 3 nodes and creates 2 edges between them.

@Component({
  template: `<vflow [nodes]="nodes" [edges]="edges" />`,
  changeDetection: ChangeDetectionStrategy.OnPush,
  standalone: true,
  imports: [Vflow],
})
export class DefaultEdgesDemoComponent {
  public nodes: Node[] = [
    {
      id: '1',
      point: { x: 10, y: 200 },
      type: 'default',
      text: '1',
    },
    {
      id: '2',
      point: { x: 200, y: 100 },
      type: 'default',
      text: '2',
    },
    {
      id: '3',
      point: { x: 200, y: 300 },
      type: 'default',
      text: '3',
    },
  ];

  public edges: Edge[] = [
    {
      id: '1 -> 2',
      source: '1',
      target: '2',
    },
    {
      id: '1 -> 3',
      source: '1',
      target: '3',
    },
  ];
}

The code above renders to this:

For more complex example you may see the documentation: https://www.ngx-vflow.org/

API

vflow component API is described here: https://www.ngx-vflow.org/api/ngx-vflow/classes/VflowComponent

Host directives for vflow that you may find helpful:

License

MIT

1.2.0

5 months ago

1.0.2

7 months ago

1.0.1

7 months ago

1.0.0

7 months ago

1.0.7

6 months ago

1.4.2

4 months ago

1.0.6

7 months ago

1.4.1

4 months ago

1.0.5

7 months ago

1.4.0

5 months ago

1.0.4

7 months ago

0.15.0

8 months ago

1.1.1

5 months ago

1.1.0

6 months ago

1.3.1

5 months ago

1.3.0

5 months ago

1.1.2

5 months ago

0.14.1

9 months ago

0.16.0

8 months ago

0.14.0

9 months ago

0.12.0

10 months ago

0.13.0

9 months ago

0.13.0-0

10 months ago

0.11.0

11 months ago

0.10.0

11 months ago

0.9.0

12 months ago

0.8.0

1 year ago

0.9.1

12 months ago

0.5.0

1 year ago

0.4.0

1 year ago

0.7.0

1 year ago

0.6.0

1 year ago

0.3.0

1 year ago

0.2.2

1 year ago

0.2.1

1 year ago

0.2.0

1 year ago

0.1.10

1 year ago

0.1.11

1 year ago

0.1.12

1 year ago

0.1.13

1 year ago

0.1.14

1 year ago

0.1.8

1 year ago

0.1.9

1 year ago

0.1.7

1 year ago

0.1.6

1 year ago

0.1.5

1 year ago

0.1.4

1 year ago

0.1.3

1 year ago

0.1.2

1 year ago

0.1.1

1 year ago

0.1.0

1 year ago