Rodrigo Pombo

Results 211 comments of Rodrigo Pombo

> We've done a bit of research here and every tokenizer is too large (generally due to wasm) for us to include by default with the SDK. Makes sense. To...

any plans for experimental support for React Server Components? or you'll wait for a stable `app` directory?

maybe wrap it in your own server component? ```jsx import { Code } from "bright" async function MyCode(props) { const newProps = await format(props) return } ```

Strange. That error comes from the [server-only package](https://www.npmjs.com/package/server-only) (a dependency of Bright) developed by the React team. For me, your code makes sense and it should work, but maybe there...

Yep, firefox returns "" for: `getComputedStyle(el).getPropertyValue("font")` But it does return something for font-size and family: ``` >getComputedStyle(el).getPropertyValue("font-family") "sans-serif" >getComputedStyle(el).getPropertyValue("font-size") "75.5px" ``` I'm looking for a way to ask firefox (and...

Yep, this one: ![image](https://user-images.githubusercontent.com/1911623/46262478-3cfd1880-c4d8-11e8-98a2-9120d48b7109.png)

Thanks @mdesplenter. Two things: 1. Given that `getStyle` function receives "font" as a parameter we should probably add this hack outside this function. Maybe in a `getFontStyle` function. 2. The...

Here is a jsbin I was using some time ago to test `getComputedStyle `in various browsers: https://jsbin.com/yoholarina/1/edit?html,console Maybe it can help you.

To support this, maybe we could add a class to the trigger element every time the menu is open and remove the class when the menu is closed. That way...

Why not get the depth from `paths.length`?