From f1cbff3e17319dc8f6cc94b30cfcd350c8770161 Mon Sep 17 00:00:00 2001 From: Michael H Date: Wed, 21 Feb 2018 20:34:02 -0800 Subject: [PATCH 1/7] Fixed Accessiblity Issue jsx docblocks - 594 set ignoreTabKey to true so that keyboard only users can tab out of jsx docblocks --- src/components/CodeEditor/CodeEditor.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/CodeEditor/CodeEditor.js b/src/components/CodeEditor/CodeEditor.js index efaab557..fa582534 100644 --- a/src/components/CodeEditor/CodeEditor.js +++ b/src/components/CodeEditor/CodeEditor.js @@ -179,7 +179,7 @@ class CodeEditor extends Component { }, }} className="gatsby-highlight"> - + {error && ( From d59c4f9116138e419812e44b0fdb56644c498d3e Mon Sep 17 00:00:00 2001 From: Alex Date: Mon, 26 Feb 2018 11:10:09 -0800 Subject: [PATCH 2/7] Add temporary link to context RFC slated for 16.3 Fixes #646 --- content/docs/context.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/content/docs/context.md b/content/docs/context.md index bf1d12af..1a648042 100644 --- a/content/docs/context.md +++ b/content/docs/context.md @@ -15,6 +15,10 @@ With React, it's easy to track the flow of data through your React components. W In some cases, you want to pass data through the component tree without having to pass the props down manually at every level. You can do this directly in React with the powerful "context" API. +> Note: +> +> A [new, safe version of context](https://github.com/reactjs/rfcs/blob/master/text/0002-new-version-of-context.md) is under development for the upcoming 16.3 release. + ## Why Not To Use Context From 7dcf2f19be07419b7a4826057f8da2375c41482a Mon Sep 17 00:00:00 2001 From: Swarnava Sengupta Date: Sun, 4 Mar 2018 21:39:44 +0530 Subject: [PATCH 3/7] Fix a small typo (#662) --- content/docs/accessibility.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/docs/accessibility.md b/content/docs/accessibility.md index 8264ef31..d21f24e4 100644 --- a/content/docs/accessibility.md +++ b/content/docs/accessibility.md @@ -75,7 +75,7 @@ function ListItem({ item }) { return ( <>
{item.term}
-
{item.description}
> +
{item.description}
); } From fb32db116c5823c6ed26031a2c541f26fceabe7e Mon Sep 17 00:00:00 2001 From: stevefaulkner Date: Sun, 4 Mar 2018 17:05:37 +0000 Subject: [PATCH 4/7] Update accessibility.md (#660) The link to the explanation of landmarks, was not up to date, suggesting this http://www.scottohara.me/blog/2018/03/03/landmarks.html provides an up to date and detailed explanation. --- content/docs/accessibility.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/docs/accessibility.md b/content/docs/accessibility.md index d21f24e4..eafc3019 100644 --- a/content/docs/accessibility.md +++ b/content/docs/accessibility.md @@ -133,7 +133,7 @@ Also use landmark elements and roles, such as `
` and `