@octanejs/motion 0.1.2 → 0.1.4

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 -1
  2. package/package.json +9 -2
package/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # @octanejs/motion
2
2
 
3
- [Framer Motion](https://motion.dev) for the [octane](https://github.com/octanejs/octane) renderer.
3
+ [Framer Motion](https://motion.dev) for the [octane](https://github.com/octanejs/octane) UI framework.
4
4
 
5
5
  Motion separates a framework-agnostic animation engine (`animate`) and gesture
6
6
  primitives (`hover`, `press`) from its React components (`motion.div`,
@@ -86,3 +86,9 @@ FLIPs). Also drag momentum/elastic physics, reduced-motion enforcement, and
86
86
  Stagger specifics: `when: 'beforeChildren' | 'afterChildren'` parent/child sequencing
87
87
  is not implemented, and a child's stagger index is fixed at registration order (a
88
88
  keyed reorder does not re-stagger).
89
+
90
+ ## Status
91
+
92
+ Current scope, known divergences, and verification status are tracked in the
93
+ generated [bindings status table](../../docs/bindings-status.md), sourced from
94
+ this package's [`status.json`](./status.json).
package/package.json CHANGED
@@ -1,8 +1,15 @@
1
1
  {
2
2
  "name": "@octanejs/motion",
3
- "version": "0.1.2",
3
+ "version": "0.1.4",
4
4
  "license": "MIT",
5
5
  "type": "module",
6
+ "octane": {
7
+ "hookSlots": {
8
+ "manual": [
9
+ "src"
10
+ ]
11
+ }
12
+ },
6
13
  "description": "Framer Motion bindings for the octane renderer — reuses motion-dom's animation engine, swaps the React components for octane host components.",
7
14
  "author": {
8
15
  "name": "Dominic Gannaway",
@@ -28,7 +35,7 @@
28
35
  },
29
36
  "dependencies": {
30
37
  "motion": "^12.0.0",
31
- "octane": "0.1.3"
38
+ "octane": "0.1.5"
32
39
  },
33
40
  "devDependencies": {
34
41
  "vitest": "^4.1.9"