@flemo/react 2.0.0 → 2.2.0
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/README.md +0 -4
- package/dist/index.mjs +401 -370
- package/dist/screen/PartLayer/PartLayer.d.ts +6 -0
- package/dist/screen/PartLayer/index.d.ts +1 -0
- package/dist/screen/__tests__/ScreenMotion.settleGrace.test.d.ts +1 -0
- package/package.json +4 -4
- package/dist/utils/useHydrationSafeFlag.d.ts +0 -1
- /package/dist/screen/__tests__/{ScreenMotion.hydration.test.d.ts → PartLayer.test.d.ts} +0 -0
package/README.md
CHANGED
|
@@ -16,10 +16,6 @@ flemo is a router whose unit of routing is a **screen**, not a page. Push, pop,
|
|
|
16
16
|
animations and gestures between them belong to the router, so an app does not have to wire a
|
|
17
17
|
routing library and an animation library together and then keep their timing in agreement.
|
|
18
18
|
|
|
19
|
-
Transitions compile to CSS `@keyframes` and run on the compositor. Shared-element morphs,
|
|
20
|
-
swipe back, and the screen lifecycle are parts of that one engine rather than separate
|
|
21
|
-
integrations.
|
|
22
|
-
|
|
23
19
|
## Install
|
|
24
20
|
|
|
25
21
|
```bash
|