Yusuke Otsuka

Results 7 issues of Yusuke Otsuka

I'm facing following error: ``` TimeoutError: Navigation timeout of 60000 ms exceeded at /root/web/node_modules/puppeteer-core/lib/cjs/puppeteer/common/LifecycleWatcher.js:106:111 ``` I think this option should be exposed like this: https://github.com/reg-viz/storycap/blob/1068f7ff7d75ae1b3b5029a0c55955d1ac17b5fc/src/cli.js#L161 related: #218

color support for my GameBoy implementations: https://github.com/mj-hd/gb https://github.com/mj-hd/dashboy

CUBIC STYLEさんのラズパイアドバンス拡張ボードを使って、実際のGBカードリッジからゲームを起動するテストです。

```dart final Something param; Widget build(BuildContext context) { // this hook will be ignored unexpectedly final foo = useRef(null)..value = param; ... } ```

## 必要だと思う機能の内容を書いてください 他の構造的に離れた要素でラベルを提供しているUIを表現するため`aria-labelledby`かそれと同等の機能がほしいです ## この機能が必要と考えられる理由を書いてください APGによると、`switch`ロールは`aria-label`や視覚可能なテキストコンテンツの代わりに`aria-labelledby`属性を指定することができるとあります。 https://www.w3.org/WAI/ARIA/apg/patterns/switch/ 現在の実装だと、labelか、childrenしか受け取りません。 https://github.com/pixiv/charcoal/blob/de4162c889061d424c034459e498a4f7eae18960/packages/react/src/components/Switch/index.tsx#L18 ## この機能があった場合にどういう動きをするかの例を書いてください react-ariaのuseSwitchのariaPropsにこれらの値が渡り、いろいろなユーザエージェントがこれを読み取れる状態。 また、他にもaria属性はいくつかサポートされていて、[`aria-description`/`aria-describedby`](https://github.com/adobe/react-spectrum/blob/4e3af379e569faac3b374e0ed5a98b2a19cd92c3/packages/%40react-types/shared/src/dom.d.ts#L26)などの追加テキスト情報を提供できるものや、[`aria-controls`](https://github.com/adobe/react-spectrum/blob/4e3af379e569faac3b374e0ed5a98b2a19cd92c3/packages/%40react-types/switch/src/index.d.ts#L43)による操作対象のUIを指定できるものがありそうです。 --- Switch control should expose aria-labelledby props According to APG, `switch` role may have an `aria-labelledby` attr...