Seyyed Morteza Moosavi
                                            Seyyed Morteza Moosavi
                                        
                                    > or custom scalar #129? custom scalar is ok. > is this like enums #164? this enum type is generated for `Label_label` fragment. but I need some global file that...
for example, the `ColorSelector` component doesn't have any fragment or query. but it needs `Color` enum. and it shouldn't depend on any of the other usages that have the enum...
> you want something like this yes. it is what I want (I assume [schema argument][schema] is all defined types in graphql) > can you try to implement this to...
I need to confirm my lib works properly with [strict effects][strict-effect]. Right now, only `@testing-library/react@alpha` supports it. ```tsx // pass import { act, render } from '@testing-library/react'; // @testing-library/[email protected] import...
Hi, The https://github.com/testing-library/react-testing-library/pull/991 is not merged yet, so I created my own [`renderHook`](https://github.com/forminator/react-wire/blob/master/src/test/render-hook.tsx) inside my lib until merge of 991. It enables strict mode [by default][strict] and has better typescript...
as a workaround you can use this code: ```ts const {children} = props ```
https://github.com/mui-org/material-ui/issues/22342 > ## Dynamic props > Based on the open issues, it seems that Aphrodite doesn't support dynamic props: Khan/aphrodite#141 > which in my opinion means that we should drop...
related to https://github.com/noeldelgado/gemini-scrollbar/issues/18
I found that sinopia try to download https://registry.npmjs.org/%40reactivex%2Frxjs instead of https://registry.npmjs.org/@reactivex%2Frxjs ``` % sinopia --version 1.4.0 ```
If some packages have the same global names, it causes compile error: e.g. ```ts // some-package/index.d.ts declare type Day = 0 | 1 | 2 | 3 | 4 |...