vizcraft 0.2.0 → 0.2.1
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/CHANGELOG.md +6 -0
- package/README.md +15 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
package/README.md
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
# VizCraft
|
|
2
2
|
|
|
3
|
+
[](https://www.npmjs.com/package/vizcraft)
|
|
4
|
+
[](https://www.npmjs.com/package/vizcraft)
|
|
5
|
+
[](https://github.com/ChipiKaf/vizcraft/actions/workflows/ci.yml)
|
|
6
|
+
[](https://github.com/ChipiKaf/vizcraft/actions/workflows/release.yml)
|
|
7
|
+
[](https://github.com/ChipiKaf/vizcraft/actions/workflows/snapshot.yml)
|
|
8
|
+
[](LICENSE)
|
|
9
|
+
|
|
10
|
+
📖 Full documentation: https://vizcraft-docs.vercel.app/
|
|
11
|
+
|
|
3
12
|
**A declarative, builder-based library for creating animated SVG network visualizations and algorithm demos.**
|
|
4
13
|
|
|
5
14
|
VizCraft is designed to make creating beautiful, animated node-link diagrams and complex visualizations intuitive and powerful. Whether you are building an educational tool, explaining an algorithm, or just need a great looking graph, VizCraft provides the primitives you need.
|
|
@@ -48,8 +57,12 @@ const container = document.getElementById('viz-basic');
|
|
|
48
57
|
if (container) builder.mount(container);
|
|
49
58
|
```
|
|
50
59
|
|
|
60
|
+
More walkthroughs and examples: https://vizcraft-docs.vercel.app/
|
|
61
|
+
|
|
51
62
|
## 📚 Documentation (Topics)
|
|
52
63
|
|
|
64
|
+
Full documentation site: https://vizcraft-docs.vercel.app/
|
|
65
|
+
|
|
53
66
|
For a guided walkthrough, the repo docs are organized like this:
|
|
54
67
|
|
|
55
68
|
- [Introduction](../../packages/docs/docs/intro.md)
|
|
@@ -109,6 +122,8 @@ b.edge('n1', 'n2')
|
|
|
109
122
|
|
|
110
123
|
### Animations
|
|
111
124
|
|
|
125
|
+
See the full Animations guide: https://vizcraft-docs.vercel.app/
|
|
126
|
+
|
|
112
127
|
VizCraft supports **two complementary animation approaches**:
|
|
113
128
|
|
|
114
129
|
1. **Registry/CSS animations** (simple, reusable effects)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "vizcraft",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.1",
|
|
4
4
|
"description": "A fluent, type-safe SVG scene builder for composing nodes, edges, animations, and overlays with incremental DOM updates and no framework dependency.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"visualization",
|