Skip to content

Commit 05931af

Browse files
committed
docs: update links in docs
1 parent 2f972ce commit 05931af

File tree

4 files changed

+32
-40
lines changed

4 files changed

+32
-40
lines changed

README.md

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,26 @@
11
# vue2vis
22

3-
> This monorepo hosts Vue2 component wrapper for the [visjs](https://github.com/visjs) libraries
3+
> This monorepo hosts Vue2 component wrapper for the [visjs](https://github.com/visjs) libraries.
44
55
<p align="center">
6-
<a href="https://travis-ci.org/alexcode/vue2vis">
7-
<img src="https://travis-ci.org/alexcode/vue2vis.svg?branch=master" alt="Build Status" />
6+
<a href="https://travis-ci.com/alexcode/vue2vis">
7+
<img src="https://travis-ci.com/alexcode/vue2vis.svg?branch=master" alt="Build Status" />
88
</a>
99
<a href="https://coveralls.io/github/alexcode/vue2vis?branch=master">
1010
<img src="https://coveralls.io/repos/github/alexcode/vue2vis/badge.svg?branch=master" alt="Coverage Status" />
1111
</a>
1212
<a href="LICENSE">
1313
<img src="https://img.shields.io/badge/license-MIT-brightgreen.svg?" alt="Software License" />
1414
</a>
15-
<a href="https://npmjs.org/package/vue2vis">
16-
<img src="https://img.shields.io/npm/v/vue2vis.svg?" alt="Packagist" />
17-
</a>
1815
<a href="https://github.com/alexcode/vue2vis/releases">
1916
<img src="https://img.shields.io/github/release/alexcode/vue2vis.svg?" alt="Latest Version" />
2017
</a>
21-
2218
<a href="https://github.com/alexcode/vue2vis/issues">
2319
<img src="https://img.shields.io/github/issues/alexcode/vue2vis.svg?" alt="Issues" />
2420
</a>
21+
<a href="https://lerna.js.org/">
22+
<img src="https://img.shields.io/badge/maintained%20with-lerna-cc00ff.svg?" alt="lerna" />
23+
</a>
2524
</p>
2625

2726
## Usage
@@ -32,6 +31,8 @@ Please visit individual packages for installation and usage
3231
- [Graph2d](/packages/graph2d/README.md)
3332
- [Network](/packages/network/README.md)
3433

34+
For more details please check the full [VisJs documentation](https://visjs.org).
35+
3536
## List of currently implemented modules
3637

3738
- [x] Timeline
@@ -104,4 +105,4 @@ If you discover any security related issues, please email infocontact.alex@gmail
104105
The MIT License (MIT). Please see [License File](LICENSE.md) for more information.
105106

106107
[link-author]: https://github.com/alexcode
107-
[link-contributors]: ../../contributors
108+
[link-contributors]: https://github.com/alexcode/vue2vis/graphs/contributors

packages/graph2d/README.md

Lines changed: 8 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -3,17 +3,14 @@
33
> Vue2 wrapper for the <a href="https://github.com/visjs/vis-graph2d">Visjs Graph2d</a> library.
44
55
<p align="center">
6-
<a href="https://travis-ci.org/alexcode/vue2vis">
7-
<img src="https://travis-ci.org/alexcode/vue2vis.svg?branch=master" alt="Build Status" />
8-
</a>
9-
<a href="https://coveralls.io/github/alexcode/vue2vis?branch=master">
10-
<img src="https://coveralls.io/repos/github/alexcode/vue2vis/badge.svg?branch=master" alt="Coverage Status" />
6+
<a href="https://travis-ci.com/alexcode/vue2vis">
7+
<img src="https://travis-ci.com/alexcode/vue2vis.svg?branch=master" alt="Build Status" />
118
</a>
129
<a href="LICENSE">
1310
<img src="https://img.shields.io/badge/license-MIT-brightgreen.svg?" alt="Software License" />
1411
</a>
15-
<a href="https://npmjs.org/package/vue2vis">
16-
<img src="https://img.shields.io/npm/v/vue2vis.svg?" alt="Packagist" />
12+
<a href="https://badge.fury.io/js/%40vue2vis%2Fgraph2d">
13+
<img src="https://badge.fury.io/js/%40vue2vis%2Fgraph2d.svg" alt="npm version" height="18">
1714
</a>
1815
<a href="https://github.com/alexcode/vue2vis/issues">
1916
<img src="https://img.shields.io/github/issues/alexcode/vue2vis.svg?" alt="Issues" />
@@ -115,7 +112,7 @@ By default all Vis events are emitted by your component. You can subscribe to a
115112
When you pass an Array of data object, it is converted internally as a DataSet.
116113
An event with the DataSet object will be fired at mounted. It's name will be prepend with the prop name (Ex: `items-mounted`, `groups-mounted`). You could use it to interact with the DataSet.
117114

118-
All the [Visjs DataSet event](http://visjs.org/docs/data/dataset.html#Events) will be prepened the same fashion (`items-add`, `items-remove`, `items-update`). For example, pushing a new object to the `items` prop will fire a `items-add` event with the following payload:
115+
All the [Visjs DataSet event](https://visjs.github.io/vis-data/data/dataset.html#Events) will be prepened the same fashion (`items-add`, `items-remove`, `items-update`). For example, pushing a new object to the `items` prop will fire a `items-add` event with the following payload:
119116

120117
```javascript
121118
{
@@ -164,9 +161,9 @@ new Vue({
164161

165162
Full reference of Item and Group formats, options properties and events:
166163

167-
- [Graph2d](http://visjs.org/docs/graph2d)
168-
- [DataSet](http://visjs.org/docs/dataset),
169-
- [DataView](http://visjs.org/docs/dataview)
164+
- [Graph2d](https://visjs.github.io/vis-timeline/docs/graph2d)
165+
- [DataSet](https://visjs.github.io/vis-data/data/dataset),
166+
- [DataView](https://visjs.github.io/vis-data/data/dataview)
170167

171168
## Change log
172169

packages/network/README.md

Lines changed: 7 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -3,17 +3,14 @@
33
> Vue2 wrapper for the <a href="https://github.com/visjs/vis-network">Visjs Network</a> library.
44
55
<p align="center">
6-
<a href="https://travis-ci.org/alexcode/vue2vis">
7-
<img src="https://travis-ci.org/alexcode/vue2vis.svg?branch=master" alt="Build Status" />
8-
</a>
9-
<a href="https://coveralls.io/github/alexcode/vue2vis?branch=master">
10-
<img src="https://coveralls.io/repos/github/alexcode/vue2vis/badge.svg?branch=master" alt="Coverage Status" />
6+
<a href="https://travis-ci.com/alexcode/vue2vis">
7+
<img src="https://travis-ci.com/alexcode/vue2vis.svg?branch=master" alt="Build Status" />
118
</a>
129
<a href="LICENSE">
1310
<img src="https://img.shields.io/badge/license-MIT-brightgreen.svg?" alt="Software License" />
1411
</a>
15-
<a href="https://npmjs.org/package/vue2vis">
16-
<img src="https://img.shields.io/npm/v/vue2vis.svg?" alt="Packagist" />
12+
<a href="https://badge.fury.io/js/%40vue2vis%2Fnetwork">
13+
<img src="https://badge.fury.io/js/%40vue2vis%2Fnetwork.svg" alt="npm version" height="18">
1714
</a>
1815
<a href="https://github.com/alexcode/vue2vis/issues">
1916
<img src="https://img.shields.io/github/issues/alexcode/vue2vis.svg?" alt="Issues" />
@@ -113,7 +110,7 @@ By default all Vis events are emitted by your component. You can subscribe to a
113110
When you pass an Array of data object, it is converted internally as a DataSet.
114111
An event with the DataSet object will be fired at mounted. It's name will be prepend with the prop name (Ex: `nodes-mounted`, `edges-mounted`). You could use it to interact with the DataSet.
115112

116-
All the [Visjs DataSet event](http://visjs.org/docs/data/dataset.html#Events) will be prepened the same fashion (`nodes-add`, `nodes-remove`, `nodes-update`). For example, pushing a new object to the `nodes` prop will fire a `nodes-add` event with the following payload:
113+
All the [Visjs DataSet event](https://visjs.github.io/vis-data/data/dataset.html#Events) will be prepened the same fashion (`nodes-add`, `nodes-remove`, `nodes-update`). For example, pushing a new object to the `nodes` prop will fire a `nodes-add` event with the following payload:
117114

118115
```javascript
119116
{
@@ -164,8 +161,8 @@ new Vue({
164161
Full reference of Item and Group formats, options properties and events:
165162

166163
- [Network](http://visjs.org/docs/network)
167-
- [DataSet](http://visjs.org/docs/dataset),
168-
- [DataView](http://visjs.org/docs/dataview)
164+
- [DataSet](https://visjs.github.io/vis-data/data/dataset),
165+
- [DataView](https://visjs.github.io/vis-data/data/dataview)
169166

170167
## Change log
171168

packages/timeline/README.md

Lines changed: 8 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -3,17 +3,14 @@
33
> Vue2 wrapper for the <a href="https://github.com/visjs/vis-timeline">Visjs Timeline</a> library.
44
55
<p align="center">
6-
<a href="https://travis-ci.org/alexcode/vue2vis">
7-
<img src="https://travis-ci.org/alexcode/vue2vis.svg?branch=master" alt="Build Status" />
8-
</a>
9-
<a href="https://coveralls.io/github/alexcode/vue2vis?branch=master">
10-
<img src="https://coveralls.io/repos/github/alexcode/vue2vis/badge.svg?branch=master" alt="Coverage Status" />
6+
<a href="https://travis-ci.com/alexcode/vue2vis">
7+
<img src="https://travis-ci.com/alexcode/vue2vis.svg?branch=master" alt="Build Status" />
118
</a>
129
<a href="LICENSE">
1310
<img src="https://img.shields.io/badge/license-MIT-brightgreen.svg?" alt="Software License" />
1411
</a>
15-
<a href="https://npmjs.org/package/vue2vis">
16-
<img src="https://img.shields.io/npm/v/vue2vis.svg?" alt="Packagist" />
12+
<a href="https://badge.fury.io/js/%40vue2vis%2Ftimeline">
13+
<img src="https://badge.fury.io/js/%40vue2vis%2Ftimeline.svg" alt="npm version" height="18">
1714
</a>
1815
<a href="https://github.com/alexcode/vue2vis/issues">
1916
<img src="https://img.shields.io/github/issues/alexcode/vue2vis.svg?" alt="Issues" />
@@ -116,7 +113,7 @@ By default all Vis events are emitted by your component. You can subscribe to a
116113
When you pass an Array of data object, it is converted internally as a DataSet.
117114
An event with the DataSet object will be fired at mounted. It's name will be prepend with the prop name (Ex: `items-mounted`, `groups-mounted`). You could use it to interact with the DataSet.
118115

119-
All the [Visjs DataSet event](http://visjs.org/docs/data/dataset.html#Events) will be prepened the same fashion (`items-add`, `items-remove`, `items-update`). For example, pushing a new object to the `items` prop will fire a `items-add` event with the following payload:
116+
All the [Visjs DataSet event](https://visjs.github.io/vis-data/data/dataset.html#Events) will be prepened the same fashion (`items-add`, `items-remove`, `items-update`). For example, pushing a new object to the `items` prop will fire a `items-add` event with the following payload:
120117

121118
```javascript
122119
{
@@ -166,8 +163,8 @@ new Vue({
166163
Full reference of Item and Group formats, options properties and events:
167164

168165
- [Timeline](http://visjs.org/docs/timeline)
169-
- [DataSet](http://visjs.org/docs/dataset),
170-
- [DataView](http://visjs.org/docs/dataview)
166+
- [DataSet](https://visjs.github.io/vis-data/data/dataset),
167+
- [DataView](https://visjs.github.io/vis-data/data/dataview)
171168

172169
## Change log
173170

@@ -206,4 +203,4 @@ If you discover any security related issues, please email infocontact.alex@gmail
206203
The MIT License (MIT). Please see [License File](LICENSE.md) for more information.
207204

208205
[link-author]: https://github.com/alexcode
209-
[link-contributors]: ../../contributors
206+
[link-contributors]: https://github.com/alexcode/vue2vis/graphs/contributors

0 commit comments

Comments
 (0)