react-simple-pull-to-refresh 1.3.2 → 1.3.3

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 +2 -0
  2. package/package.json +3 -3
package/README.md CHANGED
@@ -83,6 +83,8 @@ return (
83
83
 
84
84
  ## Changelog
85
85
 
86
+ 1.3.3: Update package.json peerDependencies to support react 18 - (From: [@mjauernig](https://github.com/mjauernig))
87
+
86
88
  1.3.2: Fix build issue encountered with 1.3.1
87
89
 
88
90
  1.3.1: Fix issue preventing fixed elements to work properly - (From: [@ManuDoni](https://github.com/ManuDoni))
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-simple-pull-to-refresh",
3
- "version": "1.3.2",
3
+ "version": "1.3.3",
4
4
  "description": "A Simple Pull To Refresh Component for React Application",
5
5
  "main": "build/index.cjs.js",
6
6
  "module": "build/index.esm.js",
@@ -40,8 +40,8 @@
40
40
  "typescript": "3.7.5"
41
41
  },
42
42
  "peerDependencies": {
43
- "react": "^16.10.2 || ^17.0.0",
44
- "react-dom": "^16.10.2 || ^17.0.0"
43
+ "react": "^16.10.2 || ^17.0.0 || ^18.0.0",
44
+ "react-dom": "^16.10.2 || ^17.0.0 || ^18.0.0"
45
45
  },
46
46
  "files": [
47
47
  "build"