Brian Vaughn
cad9c0e424
Prettier
2018-04-18 09:59:41 -07:00
Dan Abramov
e32847f030
Add a defaultValue for context example
2018-04-18 17:23:12 +01:00
John
a4aa51035a
docs(error-boundaries):fix react blog link ( #817 )
2018-04-17 18:20:30 +01:00
Dan Abramov
f461942615
Minor wording tweak for Versions page ( #816 )
2018-04-17 17:29:09 +01:00
John
233d74e790
docs(error-boundaries):remove react beta reference ( #815 )
2018-04-17 16:59:05 +01:00
Brian Vaughn
ec442372d6
Merge pull request #801 from bvaughn/versions
...
Added redirects for old React versions
2018-04-17 08:56:26 -07:00
Marc Bouchard
5593059434
docs(refs-and-the-dom): typo in CustomTextInput ( #813 )
...
Correct a typo in the render method comments for the "CustomTextInput" component of the "Adding a Ref to a DOM Element" example. The first line of the comments reads "tell React that we want the associate the <input> ref". The word "the" should be "to" resulting in the comment "tell React that we want to associate the <input> ref".
2018-04-17 02:37:06 +01:00
Brian Vaughn
0b0ba26b26
Merge pull request #811 from reactjs/gaearon-patch-19
...
React 16.3.2
2018-04-16 14:49:47 -07:00
Brian Vaughn
631f32cab0
Replaced 16.3.1 link with 16.3.2
2018-04-16 09:57:47 -07:00
Dan Abramov
0b2fac96bb
React 16.3.2
2018-04-16 16:34:13 +01:00
Brian Vaughn
88bf29d3f3
Added 16.3 changelog to version links
2018-04-15 08:00:04 -07:00
Brian Vaughn
fbbddeea29
Removing redirect proxy test
2018-04-15 07:52:11 -07:00
Brian Vaughn
7843bbe4a0
Testing a 200 redirect proxy
2018-04-15 07:47:01 -07:00
Brian Vaughn
6c094ab192
Minor tidying up of the gatsby-transformer-versions-yaml plugin
2018-04-14 10:15:17 -07:00
Brian Vaughn
d184d0292f
Added links to old release changelogs also
2018-04-14 08:08:16 -07:00
Yash Joshi
a93acdf27d
Moved Conferences to Past Conferences ( #806 )
2018-04-14 15:54:35 +01:00
Brian Vaughn
48a92c592e
Moved versions control into versions.yml and Gatsby plug-in
2018-04-13 13:42:50 -07:00
Brian Vaughn
8e45c4bd6a
Added versions page with links to recent releases
2018-04-13 11:45:12 -07:00
Brian Vaughn
ae0b9532e1
Added version drop-down toggle (that I will replace in a moment)
2018-04-13 11:31:17 -07:00
Brian Vaughn
597fe25968
Added robots.txt to prevent crawling old versions of site
2018-04-13 10:37:05 -07:00
Dan Abramov
04124cc053
Promote ref forwarding in "DOM and Refs" ( #802 )
2018-04-13 18:17:11 +01:00
Dan Abramov
94ebecdf2c
Typo
2018-04-13 17:43:07 +01:00
Brian Vaughn
5433a472d8
Added redirects for old React versions
2018-04-13 09:42:07 -07:00
Lucas Duailibe
dab9b8b2fd
Add 'visual components' use case for forwarding refs ( #798 )
...
* Add 'visual components' use case for forwarding refs
* Rearrange "forwarding refs" to focus on simple use case
* Minor wording nits to 2018-03-29-react-v-16-3.md
* Minor wording nits to forwarding-refs.md
* Add more info to the forwardRef reference doc
* Minor wording nits to reference-react.md
2018-04-13 17:23:19 +01:00
Brian Vaughn
7351d11a89
Fixed invalid getSnapshotBeforeUpdate() example code ( #799 )
...
* Fixed invalid getSnapshotBeforeUpdate() example code
* Don't use class properties in stable docs
2018-04-13 14:41:27 +01:00
Kristian Freeman
41d26411c4
Update date for #byteconf_react_2018 ( #795 )
2018-04-11 16:00:50 -07:00
Brian Vaughn
d453c2c8fb
Merge pull request #767 from koba04/customizing-display-name-ref-forwarding
...
Add a section "Customizing Name in DevTools" in Forwarding Refs
2018-04-11 08:17:28 -07:00
Brian Vaughn
e26547bfc6
Wording nit
2018-04-11 08:16:05 -07:00
Toru Kobayashi
f450adbdec
Add a section "Displaying a custom name in DevTools"
2018-04-11 11:56:17 +09:00
Alex Krolick
d7f675d418
"efficient" is vague
2018-04-10 16:29:30 -07:00
Dan Abramov
c37006cb67
Use the official talk video from YouTube ( #790 )
...
* Use the official talk video from YouTube
* Show controls
* Update 2018-03-01-sneak-peek-beyond-react-16.md
2018-04-10 19:06:59 +01:00
Brian Vaughn
935c25cb16
Merge pull request #784 from fazlerocks/patch-1
...
Fix typo — from "node" to "community"
2018-04-09 21:06:43 -07:00
Syed Fazle Rahman
71a319e69a
Fix typo — from "node" to "community"
2018-04-10 00:27:59 +05:30
Dan Abramov
7ab54e2928
Remove too much highlighting in a small snippet
2018-04-09 19:26:30 +01:00
Justin Francos
827ade1906
fixed 2 cases of "it's" where it should be "its" ( #782 )
...
Its = it + possessive
It's = it is
2018-04-09 11:20:06 -07:00
tjallingt
6521a654cb
Added updating nested context default value example ( #780 )
...
* added context default value example
* Implement suggested change
* noop function as default value to createContext
2018-04-09 11:12:02 -07:00
Brian Vaughn
5ba8e04f26
Merge pull request #748 from tgallacher/fix/blog-react-v-16-3
...
Fix: added missing component instantiation within the 'forwardRef' AP…
2018-04-08 11:15:57 -07:00
tjallingt
e4941f6440
Added example for updating nested context consumer ( #776 )
...
* Added an example showing how to update the context from inside a (deeply) nested component
* Wrap comments
* Wrap comments
* Tweak wording
* Prettier
* Prettier
* Typo: "funtion" -> "function"
2018-04-06 18:49:55 -07:00
Kristian Freeman
6dd6ed98c5
Add #react_byteconf_2018 to conferences.md ( #777 )
...
* Add #react_byteconf_2018 to conferences.md
* Fix markdown parsing of conference name
2018-04-06 21:57:19 +01:00
Alex Krolick
fc97bb58ce
Merge pull request #775 from whitedogg13/add-conference-videos
...
Add available conference video playlists (2017~2018.3)
2018-04-06 12:37:08 -07:00
Dan Abramov
1466232fbf
Tweak context
2018-04-06 16:19:11 +01:00
Richie
c0deab9dfb
Add available conference video playlists (2017~2018.3)
2018-04-06 23:02:41 +08:00
Alex Krolick
6c22a4345b
Clarify when Consumers get the default value ( #770 )
...
* Clarify when Consumers get the default value
* Change wording
2018-04-06 15:14:46 +01:00
Rauno Freiberg
4f5d4b08cb
nit: minor reordering of words ( #772 )
2018-04-06 15:05:07 +01:00
Mauricio Mijail De La Quintana
7f522ca1ae
add ReactBolivia meetup. ( #774 )
2018-04-06 15:02:46 +01:00
Alex Krolick
9c9cee0b08
Merge pull request #771 from codecrutch/fix-createref-example
...
Move constructor out of render
2018-04-05 11:24:51 -07:00
Sean Snyder
e1689b0f20
Move constructor out of render
2018-04-05 14:16:00 -04:00
Alex Krolick
79987d2bc7
Merge pull request #769 from kentcdodds/patch-2
...
add reference to react-testing-library
2018-04-05 11:14:06 -07:00
Kent C. Dodds
17f2a6f9d0
Update addons-test-utils.md
2018-04-05 12:11:54 -06:00
Kent C. Dodds
9c39cb117f
add reference to react-testing-library
...
Because it will help engineers write better tests with react.
2018-04-05 10:09:59 -06:00