Joonas Tiala
Joonas Tiala
> I notice one thing though, in the `@testing-library/jest-dom/vitest`, we're overriding `@vitest/expect` module: > > ```ts > import {type expect} from 'vitest' > import {type TestingLibraryMatchers} from './matchers' > >...
Seems like all the other examples in my original post render now correctly, but the ones using references.
I'm using Storybook V8 with the default `react-docgen` and typing the forwardref like this works for me: ```typescript type ButtonProps = { /** * Disables the button. */ disabled?: boolean;...
Another example [here](https://github.com/jtiala/lunchwatch-api/blob/master/src/restaurant/resolvers.ts), playground available [here](https://api.lunch.watch/graphql), try this query: ```graphql query { restaurants( first: 10 lat: 65.012643 lng: 25.471445 orderBy: "distance" orderDirection: asc ) { totalCount edges { cursor node...
Thanks! I'll try to find some time on the weekend to test this out.
Any news on this project? I can try to help you with the three issues I created if you are willing to accept pull requests.
> the typescript type looks like this: > > ```ts > export type ButtonProps = { > /** The variant of the button. */ > variant?: "standard" | "primary"; >...
Including .css files doesn't seem to change anything. This is my config now, it still behaves like described in the issue. ``` dts({ insertTypesEntry: true, rollupTypes: true, exclude: ["**/*.stories.tsx"], include:...
I agree, the current tag icon is too big compared to other icons. This should get merged IMO. Here's an example of a simple badge component with some of the...