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 CHANGED
@@ -1,5 +1,11 @@
1
1
  # vizcraft
2
2
 
3
+ ## 0.2.1
4
+
5
+ ### Patch Changes
6
+
7
+ - [`f8fd369`](https://github.com/ChipiKaf/vizcraft/commit/f8fd369ca32a4653059f8e6697a17dcea56edc8c) Thanks [@ChipiKaf](https://github.com/ChipiKaf)! - Update documentation
8
+
3
9
  ## 0.2.0
4
10
 
5
11
  ### Minor Changes
package/README.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # VizCraft
2
2
 
3
+ [![npm version](https://img.shields.io/npm/v/vizcraft.svg)](https://www.npmjs.com/package/vizcraft)
4
+ [![npm downloads](https://img.shields.io/npm/dm/vizcraft.svg)](https://www.npmjs.com/package/vizcraft)
5
+ [![CI](https://github.com/ChipiKaf/vizcraft/actions/workflows/ci.yml/badge.svg)](https://github.com/ChipiKaf/vizcraft/actions/workflows/ci.yml)
6
+ [![Release](https://github.com/ChipiKaf/vizcraft/actions/workflows/release.yml/badge.svg)](https://github.com/ChipiKaf/vizcraft/actions/workflows/release.yml)
7
+ [![Snapshot](https://github.com/ChipiKaf/vizcraft/actions/workflows/snapshot.yml/badge.svg)](https://github.com/ChipiKaf/vizcraft/actions/workflows/snapshot.yml)
8
+ [![license](https://img.shields.io/npm/l/vizcraft.svg)](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.0",
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",