Skip to content

Commit

Permalink
Merge branch 'warnings' of https://github.com/uehaj/ja.reactjs.org in…
Browse files Browse the repository at this point in the history
…to warnings
  • Loading branch information
uehaj committed Feb 13, 2019
2 parents 13a5f74 + d023803 commit 1e554ac
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion content/warnings/dont-call-proptypes.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ Button.propTypes = {

### サードパーティの PropTypes における誤検知を修正する

あなたがサードパーティ製 PropTypes の作者で、利用者に既存の React PropTypes をラップさせる場合、ライブラリがこの警告を発生させるのを利用者は見かけるようになるでしょう
あなたがサードパーティ製 PropTypes の作者で、利用者に既存の React PropTypes をラップさせる場合、ライブラリがこの警告を発生させるのを利用者は目にするようになるでしょう
これは手動によるPropTypesの呼び出しを[検知するために渡す最後尾の引数 `secret`](https://github.com/facebook/react/pull/7132)を React が確認できないために起こります。

以下に修正方法を示します。例として使用しているのは [react-bootstrap/react-prop-types](https://github.com/react-bootstrap/react-prop-types/blob/0d1cd3a49a93e513325e3258b28a82ce7d38e690/src/deprecated.js) にある `deprecated` です。現時点での実装では単に引数として `props``propName`、そして `componentName` を渡しているだけです。
Expand Down
3 changes: 2 additions & 1 deletion content/warnings/invalid-aria-prop.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@ title: Invalid ARIA Prop Warning
layout: single
permalink: warnings/invalid-aria-prop.html
---
「無効なARIA Props」警告 (invalid-aria-prop) は、Web Accessibility Initiative (WAI) Accessible Rich Internet Application (ARIA) の[標準仕様](https://www.w3.org/TR/wai-aria-1.1/#states_and_properties)に無い aria-* プロパティで DOM 要素をレンダリングしようとした場合に発生します。

「無効な ARIA Props」警告 (invalid-aria-prop) は、Web Accessibility Initiative (WAI) Accessible Rich Internet Application (ARIA) の[標準仕様](https://www.w3.org/TR/wai-aria-1.1/#states_and_properties)に無い aria-* プロパティで DOM 要素をレンダリングしようとした場合に発生します。

1. 使用した props が標準仕様に準拠しているはずのものであるなら、綴りをよく確認してください。 `aria-labelledby``aria-activedescendant` の綴り間違いはありがちです。

Expand Down

0 comments on commit 1e554ac

Please sign in to comment.