Skip to content

Commit 35eac73

Browse files
author
Vlad Balin
committed
docs hotfix
1 parent cf56a5c commit 35eac73

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -345,7 +345,7 @@ Also, there's [working](https://volicon.github.io/valuelink) [example](/example/
345345

346346
### Text and number form fields
347347

348-
##### <Input type="text"/>, <TextArea />
348+
##### `<Input type="text"/>`, `<TextArea />`
349349

350350
`tags.jsx` contains wrappers for standard `<input>` and `<textarea>` tags,
351351
which can be directly bound to the string state elements.
@@ -357,7 +357,7 @@ These wrappers will add `invalid` class to enclosed HTML element, if an error is
357357
<TextArea valueLink={ link } />
358358
```
359359

360-
##### <NumberInput/>
360+
##### `<NumberInput/>`
361361

362362
There's also cross-browser implementation of *numeric input* tag. It has following differences compared to `<Input>`:
363363

@@ -375,7 +375,7 @@ There's also cross-browser implementation of *numeric input* tag. It has followi
375375

376376
### Checkboxes
377377

378-
##### <Input type="checkbox">
378+
##### `<Input type="checkbox" />`
379379

380380
Wrapper for the standard `<input>`. Directly binds boolean value with `checkedLink` property.
381381

@@ -384,7 +384,7 @@ Wrapper for the standard `<input>`. Directly binds boolean value with `checkedLi
384384
<Input type="text" checkedLink={ arrayLink.contains( 'option' ) } />
385385
```
386386

387-
##### <Checkbox>
387+
##### `<Checkbox/>`
388388

389389
Internally, it's `<div>` element which toggles `selected` class on click.
390390
Thus, it can be easily styled.
@@ -400,7 +400,7 @@ It passes through anything else, including `children`.
400400

401401
### Radio Groups and Select list
402402

403-
##### <Select>
403+
##### `<Select/>`
404404

405405
Wrapper for standard <select/>. Regular <option/> tags must be used. All props are passed through.
406406

@@ -411,7 +411,7 @@ Wrapper for standard <select/>. Regular <option/> tags must be used. All props a
411411
</Select>
412412
```
413413

414-
##### <Input type="radio">
414+
##### `<Input type="radio"/>`
415415
416416
Wrapper for the standard `<input>`. Directly binds boolean value with `checkedLink` property.
417417

@@ -428,7 +428,7 @@ Can be directly bound to the state member using `valueLink` property.
428428
</label>
429429
```
430430

431-
##### <Radio>
431+
##### `<Radio/>`
432432

433433
Internally, it's `<div>` element which always sets `selected` class on click. Thus,
434434
it can be easily styled.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "valuelink",
3-
"version": "1.3.6",
3+
"version": "1.3.7",
44
"description": "React valueLink implementation with links to objects, validation, and purely functional state updates.",
55
"main": "valuelink.js",
66
"repository": {

0 commit comments

Comments
 (0)