Naoto Ikuno
Naoto Ikuno
ほぼ解決すると思います
@NghiaTranUIT I notice that the checkbox of "Enable Map Remote tool" was controlled because of my configuration. I enable "Use keyboard navigation to move focus between controls" option. Maybe this...
@NghiaTranUIT Thanks! It's a pretty cool solution!! I'll use it.
Is there any update? Renaming `_default` in core/dist/index.d.ts in published swr package to `useSWR` will improve VSCode support. https://github.com/vercel/swr/blob/3cec4bd18a163bde31d8382915fcf0753d7194ed/core/index.ts#L2-L3 Change above code to ```ts import _useSWR from './use-swr'; const useSWR...
Suggestion: Add singleFile option and use it to rewrite destination. ```js config.rewrites = [ { source: '**', destination: args['--singleFile'], }, ...existingRewrites, ]; ``` (The above code is pseudocode, so it...
Temporary solution: Write a `serve.json` and set the `--config` option `serve build --config ../serve.json` directory structure: ``` packages/internal-cms ├── build │ └── path/to/index.html └── serve.json ``` serve.json: ``` { "rewrites":...
@weiwan-gmail SuperSet will work for each item of Union. `UnionToIntersection` will work as below. This will emit the correct result. ```typescript (((x: { foo: string }) => any) | ((x:...
maybe I found a workaround. ``` const Foo = ({ measureRef }) => measureRef(e), [measureRef])} />; const App = ( {({ measureRef }) => ( )} ); ``` https://reactjs.org/docs/refs-and-the-dom.html#caveats-with-callback-refs ↑Here,...
I was looking for a specification document, but I couldn't find a sentence that was explicitly written. I can only say, "It's such a specification because it works like this"....