@flemo/react 2.1.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.
@@ -0,0 +1,6 @@
1
+ import { FlemoStores } from '@flemo/core';
2
+ export interface PartLayerProps {
3
+ stores: FlemoStores;
4
+ }
5
+ declare function PartLayer({ stores }: PartLayerProps): import("react").JSX.Element;
6
+ export default PartLayer;
@@ -0,0 +1 @@
1
+ export { default, type PartLayerProps } from './PartLayer';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@flemo/react",
3
- "version": "2.1.0",
3
+ "version": "2.2.0",
4
4
  "description": "React bindings for flemo: Router, Route, Screen, and the screen-transition runtime.",
5
5
  "main": "./dist/index.mjs",
6
6
  "module": "./dist/index.mjs",
@@ -34,7 +34,7 @@
34
34
  "homepage": "https://flemo.dev",
35
35
  "license": "MIT",
36
36
  "dependencies": {
37
- "@flemo/core": "2.1.0",
37
+ "@flemo/core": "2.2.0",
38
38
  "path-to-regexp": "^8.4.2",
39
39
  "zustand": "^5.0.15"
40
40
  },
@@ -42,10 +42,10 @@
42
42
  "@flemo/eslint-config": "0.0.0",
43
43
  "@flemo/tsconfig": "0.0.0",
44
44
  "@testing-library/jest-dom": "^6.9.1",
45
- "@testing-library/react": "^16.3.2",
45
+ "@testing-library/react": "^16.3.3",
46
46
  "@types/node": "^24.13.1",
47
47
  "@types/react": "^19.2.18",
48
- "@types/react-dom": "^19.2.4",
48
+ "@types/react-dom": "^19.2.5",
49
49
  "@vitejs/plugin-react-swc": "^4.3.3",
50
50
  "@vitest/coverage-v8": "^4.1.11",
51
51
  "eslint": "^9.39.5",
@@ -1 +0,0 @@
1
- export default function useHydrationSafeFlag(read: () => boolean): boolean;