@3plate/graph 0.1.9 → 0.1.12

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.
Files changed (2) hide show
  1. package/README.md +7 -7
  2. package/package.json +5 -5
package/README.md CHANGED
@@ -108,12 +108,12 @@ function App() {
108
108
 
109
109
  ## Packages
110
110
 
111
- | Package | Description |
112
- |---------|-------------|
113
- | [@3plate/graph-core](./packages/core/README.md) | Framework-agnostic core library |
114
- | [@3plate/graph-react](./packages/react/README.md) | React components and hooks |
115
- | [@3plate/graph-vue](./packages/vue/README.md) | Vue 3 components |
116
- | [@3plate/graph-angular](./packages/angular/README.md) | Angular components |
111
+ | Package | Description |
112
+ |-------------------------------------------------------|---------------------------------|
113
+ | [@3plate/graph-core](./packages/core/README.md) | Framework-agnostic core library |
114
+ | [@3plate/graph-react](./packages/react/README.md) | React components and hooks |
115
+ | [@3plate/graph-vue](./packages/vue/README.md) | Vue 3 components |
116
+ | [@3plate/graph-angular](./packages/angular/README.md) | Angular components |
117
117
 
118
118
  ## Configuration
119
119
 
@@ -259,7 +259,7 @@ api.update(u => {
259
259
 
260
260
  // Bulk operations
261
261
  api.replaceSnapshot(nodes, edges)
262
- api.replaceHistory(frames)
262
+ api.replaceHistory(history)
263
263
 
264
264
  // Theming
265
265
  api.setColorMode('dark')
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@3plate/graph",
3
- "version": "0.1.9",
3
+ "version": "0.1.12",
4
4
  "description": "Graph library with stable layout and incremental updates",
5
5
  "type": "module",
6
6
  "license": "GPL-3.0",
@@ -23,10 +23,10 @@
23
23
  "access": "public"
24
24
  },
25
25
  "dependencies": {
26
- "@3plate/graph-angular": "0.1.9",
27
- "@3plate/graph-react": "0.1.9",
28
- "@3plate/graph-core": "0.1.9",
29
- "@3plate/graph-vue": "0.1.9"
26
+ "@3plate/graph-angular": "0.1.12",
27
+ "@3plate/graph-core": "0.1.12",
28
+ "@3plate/graph-react": "0.1.12",
29
+ "@3plate/graph-vue": "0.1.12"
30
30
  },
31
31
  "devDependencies": {
32
32
  "@changesets/cli": "^2.29.8",