NEO97

Results 8 comments of NEO97

This would be a great feature to have. In the mean time, is there any workaround to make a half-hemisphere? (A quartersphere!)

They were not needed, removed in #251

Instead of passing the function to `render` as a prop, use `$on` to bind a mock function to the component. This works for me: ```ts it("fires click event", async ()...

@Rowno yes! [styled-components](https://github.com/styled-components/styled-components) does this. For web, you import from `styled-components`, and for native you import from `styled-components/native`. It's still the same NPM package. Also, React Native does have those...

> Would it make more sense to have something run as a post build so it could capture all the statically generated paths (including dynamic routes that are crawled by...

@Angelelz does this also cover nested relations? i.e. ```ts type UsersWithPosts = InferManyRelationalResult< typeof schema, 'users', { with: { posts: { categories: true } } } >; ```

@wanbinkimoon I noticed your fork might have a fix for this. Want to create a pull request if you got this fixed?

@rluba sure thing. Given this JSON: ```json { "name": "Consolas", "char_widths": { "!": 3, "I": 3 } } ``` I want to parse it into a struct like this: ```rs...