@flemo/react 1.0.0 → 1.0.2
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 +1 -6
- package/dist/history/__tests__/HistoryListener.test.d.ts +1 -0
- package/dist/index.mjs +611 -585
- package/dist/navigate/__tests__/useStep.test.d.ts +8 -0
- package/dist/renderer/__tests__/Renderer.test.d.ts +1 -0
- package/dist/screen/__tests__/ParamsReducer.test.d.ts +1 -0
- package/dist/screen/__tests__/useParams.test.d.ts +8 -0
- package/dist/screen/__tests__/useScreen.test.d.ts +1 -0
- package/dist/transition/__tests__/animateInline.test.d.ts +1 -0
- package/dist/transition/__tests__/useTransitionStyles.test.d.ts +7 -0
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -24,12 +24,7 @@ pnpm add @flemo/react
|
|
|
24
24
|
|
|
25
25
|
`@flemo/react` pulls in `@flemo/core` (the framework-agnostic primitives) as a regular
|
|
26
26
|
dependency. Apps that only need transition compilers or the navigation queue can install
|
|
27
|
-
`@flemo/core` directly.
|
|
28
|
-
add `@flemo/react-layout` (which carries `motion` as its peer dependency):
|
|
29
|
-
|
|
30
|
-
```bash
|
|
31
|
-
pnpm add @flemo/react-layout motion
|
|
32
|
-
```
|
|
27
|
+
`@flemo/core` directly.
|
|
33
28
|
|
|
34
29
|
## Documentation
|
|
35
30
|
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|