react-voodoo 2.6.0 → 2.6.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-voodoo",
3
- "version": "2.6.0",
3
+ "version": "2.6.1",
4
4
  "license": "(CC-BY-ND-4.0 OR AGPL-3.0-only)",
5
5
  "main": "./dist/react-voodoo.js",
6
6
  "author": "Nathan Braun <n8tz.js@gmail.com>",
@@ -26,7 +26,7 @@
26
26
  "fast-deep-equal": "^3.1.3",
27
27
  "is": "^3.3.0",
28
28
  "shortid": "^2.2.16",
29
- "tween-axis": "^2.1.0"
29
+ "tween-axis": "^2.2.0"
30
30
  },
31
31
  "devDependencies": {
32
32
  "@babel/preset-env": "^7.24.0",
package/readme.md CHANGED
@@ -28,6 +28,8 @@ Most animation libraries output **absolute values** — they own a CSS property
28
28
 
29
29
  React-voodoo takes a different approach: its engine computes **deltas** — the *change* from the previous frame — and accumulates them additively across any number of axes. Multiple animations on the same property simply add together. No ownership, no conflicts.
30
30
 
31
+ The engine is built on [tween-axis](../tween-axis/README.md) and uses its WebAssembly backend for hot-path property accumulation with zero JS-boundary crossings per frame.
32
+
31
33
  This unlocks a set of features that are unique to the delta model:
32
34
 
33
35
  | Feature | How |