Skip to content
This repository was archived by the owner on Aug 23, 2022. It is now read-only.

Commit 51d8b8b

Browse files
committed
Updating docs
1 parent c7c5352 commit 51d8b8b

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

UPGRADE_GUIDE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
- **Flexibility**
1010
- **Features**
1111

12-
### Quick Start - v0.x to v1.2.6+
12+
### Quick Start - v0.x to v1.3.0+
1313

1414
**Creating the store - version 0.x:**
1515
_Note:_ This way will still work in v1.0!

docs/api/Control.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -309,7 +309,7 @@ For instance, if you don't care whether a `<Control>` is focused or blurred:
309309
### `disabled={...}`
310310
_(Any)_: The `disabled` prop works just like you'd expect for controls that support the HTML5 `disabled` attribute.
311311

312-
However, in `<Control>`, it can be a boolean, or a function, string, or object as a [Lodash iteratee](https://lodash.com/docs#iteratee).
312+
However, in `<Control>`, it can be a boolean, or a function, string, or object as a [Lodash iteratee](https://lodash.com/docs#iteratee).
313313

314314
```jsx
315315
// Disable the submit button when the form is invalid
@@ -327,4 +327,4 @@ For example:
327327
- `disabled={{ valid: false, touched: true }}` will disable if the field is both `touched` and not `valid`
328328
- `disabled={(fieldValue) => !fieldValue.valid}` will call the function provided with the `fieldValue` to determine its `disabled` state.
329329

330-
(since: version 1.2.6)
330+
(since: version 1.3.0)

docs/guides/quickstart.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Check out the above links if you need any help with those prerequisites.
1515
- `npm install redux react-redux --save`
1616
- `npm install react-redux-form --save`
1717

18-
**Note:** - `redux-thunk` is no longer required for versions 1.2.6 and higher. If you are using a previous version, make sure to install it as well.
18+
**Note:** - `redux-thunk` is no longer required for versions 1.3.0 and higher. If you are using a previous version, make sure to install it as well.
1919

2020
### 2. Setup your app.
2121

@@ -70,7 +70,7 @@ const store = createStore(combineForms({
7070
export default store;
7171
```
7272

73-
**Note:** `redux-thunk` is no longer required for RRF versions 1.2.6 and higher. If you are using a previous version, make sure to configure your store to use `redux-thunk`.
73+
**Note:** `redux-thunk` is no longer required for RRF versions 1.3.0 and higher. If you are using a previous version, make sure to configure your store to use `redux-thunk`.
7474

7575
### 4. Setup your form!
7676

0 commit comments

Comments
 (0)