@matdata/yasgui-graph-plugin 1.0.7 → 1.1.0
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 +6 -6
- package/dist/yasgui-graph-plugin.cjs.js +29995 -155
- package/dist/yasgui-graph-plugin.cjs.js.map +4 -4
- package/dist/yasgui-graph-plugin.esm.js +29998 -158
- package/dist/yasgui-graph-plugin.esm.js.map +4 -4
- package/dist/yasgui-graph-plugin.min.js +950 -1
- package/dist/yasgui-graph-plugin.min.js.map +4 -4
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -24,11 +24,11 @@ A YASGUI plugin for visualizing SPARQL CONSTRUCT and DESCRIBE query results as i
|
|
|
24
24
|
### NPM
|
|
25
25
|
|
|
26
26
|
```bash
|
|
27
|
-
npm install @matdata/yasgui-graph-plugin @
|
|
27
|
+
npm install @matdata/yasgui-graph-plugin @matdata/yasgui vis-network
|
|
28
28
|
```
|
|
29
29
|
|
|
30
30
|
```javascript
|
|
31
|
-
import Yasgui from '@
|
|
31
|
+
import Yasgui from '@matdata/yasgui';
|
|
32
32
|
import GraphPlugin from '@matdata/yasgui-graph-plugin';
|
|
33
33
|
|
|
34
34
|
Yasgui.Yasr.registerPlugin('Graph', GraphPlugin);
|
|
@@ -40,8 +40,8 @@ const yasgui = new Yasgui(document.getElementById('yasgui'));
|
|
|
40
40
|
|
|
41
41
|
```html
|
|
42
42
|
<!-- YASGUI -->
|
|
43
|
-
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@
|
|
44
|
-
<script src="https://cdn.jsdelivr.net/npm/@
|
|
43
|
+
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@matdata/yasgui@5.0.0/build/yasgui.min.css">
|
|
44
|
+
<script src="https://cdn.jsdelivr.net/npm/@matdata/yasgui@5.0.0/build/yasgui.min.js"></script>
|
|
45
45
|
|
|
46
46
|
<!-- Graph Plugin -->
|
|
47
47
|
<script src="https://cdn.jsdelivr.net/npm/@matdata/yasgui-graph-plugin/dist/yasgui-graph-plugin.min.js"></script>
|
|
@@ -197,8 +197,8 @@ Contributions welcome! Please follow the project constitution (`.specify/memory/
|
|
|
197
197
|
## 🙏 Acknowledgments
|
|
198
198
|
|
|
199
199
|
- Built with [vis-network](https://visjs.github.io/vis-network/) for graph rendering
|
|
200
|
-
- Integrates with [YASGUI](https://github.com/
|
|
201
|
-
- Follows the [yasgui-geo](https://github.com/
|
|
200
|
+
- Integrates with [YASGUI](https://github.com/matdata/yasgui) SPARQL editor
|
|
201
|
+
- Follows the [yasgui-geo](https://github.com/matdata/yasgui-geo) plugin pattern
|
|
202
202
|
|
|
203
203
|
## 📊 Project Status
|
|
204
204
|
|