flemo 1.4.1 → 1.5.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": "flemo",
3
- "version": "1.4.1",
3
+ "version": "1.5.1",
4
4
  "description": "A modern React router library with built-in motion animations and smooth transitions",
5
5
  "main": "./dist/index.mjs",
6
6
  "module": "./dist/index.mjs",
@@ -33,17 +33,9 @@
33
33
  },
34
34
  "homepage": "https://flemo-dev.lovable.app",
35
35
  "license": "MIT",
36
- "scripts": {
37
- "build": "vite build",
38
- "watch": "vite build --watch",
39
- "prettier": "prettier --write --config ./.prettierrc \"**/*.{js,mjs,ts,jsx,tsx,mts,json}\"",
40
- "convention": "pnpm prettier && eslint --fix \"**/*.{js,mjs,ts,jsx,tsx,mts,html}\"",
41
- "prepare": "husky",
42
- "prepublishOnly": "pnpm build"
43
- },
44
36
  "dependencies": {
45
37
  "path-to-regexp": "^8.2.0",
46
- "zustand": "^5.0.7"
38
+ "zustand": "^5.0.11"
47
39
  },
48
40
  "devDependencies": {
49
41
  "@eslint/js": "^9.33.0",
@@ -69,11 +61,17 @@
69
61
  },
70
62
  "peerDependencies": {
71
63
  "motion": "^12.0.0",
72
- "react": "^19.0.0",
73
- "react-dom": "^19.0.0"
64
+ "react": "^19.2.0",
65
+ "react-dom": "^19.2.0"
74
66
  },
75
67
  "lint-staged": {
76
68
  "*.{js,mjs,ts,jsx,tsx,mts,json}": "prettier --write",
77
69
  "*.{js,mjs,ts,jsx,tsx,mts,html}": "eslint --fix"
70
+ },
71
+ "scripts": {
72
+ "build": "vite build",
73
+ "watch": "vite build --watch",
74
+ "prettier": "prettier --write --config ./.prettierrc \"**/*.{js,mjs,ts,jsx,tsx,mts,json}\"",
75
+ "convention": "pnpm prettier && eslint --fix \"**/*.{js,mjs,ts,jsx,tsx,mts,html}\""
78
76
  }
79
- }
77
+ }
@@ -1,8 +0,0 @@
1
- import { ReactNode } from 'react';
2
- interface ScreenFreezeProps {
3
- freeze: boolean;
4
- children: ReactNode;
5
- placeholder?: ReactNode;
6
- }
7
- declare function ScreenFreeze({ freeze, children, placeholder }: ScreenFreezeProps): import("react").JSX.Element;
8
- export default ScreenFreeze;