We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
aria-labelledby
Switch
他の構造的に離れた要素でラベルを提供しているUIを表現するためaria-labelledbyかそれと同等の機能がほしいです
APGによると、switchロールはaria-labelや視覚可能なテキストコンテンツの代わりにaria-labelledby属性を指定することができるとあります。 https://www.w3.org/WAI/ARIA/apg/patterns/switch/
switch
aria-label
現在の実装だと、labelか、childrenしか受け取りません。
charcoal/packages/react/src/components/Switch/index.tsx
Line 18 in de4162c
react-ariaのuseSwitchのariaPropsにこれらの値が渡り、いろいろなユーザエージェントがこれを読み取れる状態。
また、他にもaria属性はいくつかサポートされていて、aria-description/aria-describedbyなどの追加テキスト情報を提供できるものや、aria-controlsによる操作対象のUIを指定できるものがありそうです。
aria-description
aria-describedby
aria-controls
Switch control should expose aria-labelledby props
According to APG, switch role may have an aria-labelledby attr instead of aria-label. https://www.w3.org/WAI/ARIA/apg/patterns/switch/
In the current implementation, the Switch component only exposes aria-label and children as text content.
(...and, there are more aria props, aria-description and aria-describedby, aria-details attrs to represent additional text content, aria-controls to represent content controlled by the switch.)
aria-details
The text was updated successfully, but these errors were encountered:
Issueの作成およびフィードバックをいただき、誠にありがとうございます。
v4.0.0の変更により、Switchのinput要素に対して任意の属性を付与できるようになる予定です。そのため、申し訳ありませんが現在 v3 のAPIに変更を加える事は検討されていません。
v4.0.0のリリース時にご確認いただければ幸いです。また、現在beta版もリリースしておりますので、そちらでもご確認いただく事ができます。
参考までに、下記はv4.0.0のSwitchのコードになります。 https://github.com/pixiv/charcoal/blob/6ce3eaf89f87ceec7cd0b5031c3f6227096c289d/packages/react/src/components/Switch/index.tsx
Sorry, something went wrong.
toshusai
No branches or pull requests
必要だと思う機能の内容を書いてください
他の構造的に離れた要素でラベルを提供しているUIを表現するため
aria-labelledby
かそれと同等の機能がほしいですこの機能が必要と考えられる理由を書いてください
APGによると、
switch
ロールはaria-label
や視覚可能なテキストコンテンツの代わりにaria-labelledby
属性を指定することができるとあります。https://www.w3.org/WAI/ARIA/apg/patterns/switch/
現在の実装だと、labelか、childrenしか受け取りません。
charcoal/packages/react/src/components/Switch/index.tsx
Line 18 in de4162c
この機能があった場合にどういう動きをするかの例を書いてください
react-ariaのuseSwitchのariaPropsにこれらの値が渡り、いろいろなユーザエージェントがこれを読み取れる状態。
また、他にもaria属性はいくつかサポートされていて、
aria-description
/aria-describedby
などの追加テキスト情報を提供できるものや、aria-controls
による操作対象のUIを指定できるものがありそうです。Switch control should expose aria-labelledby props
According to APG,
switch
role may have anaria-labelledby
attr instead ofaria-label
.https://www.w3.org/WAI/ARIA/apg/patterns/switch/
In the current implementation, the
Switch
component only exposesaria-label
and children as text content.charcoal/packages/react/src/components/Switch/index.tsx
Line 18 in de4162c
(...and, there are more aria props,
aria-description
andaria-describedby
,aria-details
attrs to represent additional text content,aria-controls
to represent content controlled by the switch.)The text was updated successfully, but these errors were encountered: