redux-saga-final-form
Advanced tools
Comparing version 2.0.0-1 to 2.0.0
{ | ||
"name": "redux-saga-final-form", | ||
"version": "2.0.0-1", | ||
"version": "2.0.0", | ||
"description": "", | ||
@@ -18,3 +18,3 @@ "main": "dist/index.js", | ||
"peerDependencies": { | ||
"react-redux": "^7.2.2" | ||
"react-redux": "*" | ||
}, | ||
@@ -21,0 +21,0 @@ "devDependencies": { |
@@ -44,8 +44,11 @@ redux-saga-final-form | ||
```javascript | ||
import { finalFormSaga } from 'redux-saga-final-form'; | ||
import { handleListeners } from "redux-saga-final-form"; | ||
import createSagaMiddleware from "redux-saga"; | ||
const sagaMiddleware = createSagaMiddleware(); | ||
... | ||
sagaMiddleware.run(finalFormSaga); | ||
const store = createStore( | ||
reducer, | ||
initialState, | ||
applyMiddleware(...otherMiddleware, handleListeners) | ||
) | ||
``` | ||
@@ -56,3 +59,3 @@ | ||
```javascript | ||
export const submitStatrAction = (payload: { formField1: string }) => ({ | ||
export const submitStartAction = (payload: { formField1: string }) => ({ | ||
type: SUBMIT_START_ACTION | ||
@@ -59,0 +62,0 @@ payload |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
No v1
QualityPackage is not semver >=1. This means it is not stable and does not support ^ ranges.
Found 1 instance in 1 package
11038
2
64