Alexey Ryabov

Results 15 comments of Alexey Ryabov

It would be nice to change the behaviour of `min`. Currently it's just an alias to `greaterThan` but it's more intuitive that it's actually equal or greater than. For example,...

@acrisci I don't know. I think we should wait till it's fixed in `usocket`. Created an issue to tell about the problem and also to upgrade `usocket` once they fix...

It would be nice to have an access to a message in method handler. Currently, we only have message body but sometimes you need to know, for example, who is...

@jjenzz I don't want to prevent clicking outside from closing. I want to preserve it and make it possible to scroll using left mouse button.

It happens because it uses `a` instead of `Button` as a base component: ![image](https://user-images.githubusercontent.com/10157660/160802287-252286e9-9652-4cad-930d-56fba71b6b4b.png) I think it should check whether `DefaultType` is a component or host-component (e.g. `div`, `a`, etc.)....

From example, Button is probably a wrapper on styled component. Possible temporary workaround can be like this: ```jsx function Button(...) { //... return } Button[Symbol.for('sxs.internal')] = StyledButton[Symbol.for('sxs.internal')] ; ``` I...

I have a problem with CSS order when trying to overwrite styles of `styled` component using `css` function. Here is [the reproduction](https://codesandbox.io/s/stitches-css-order-issue-gti288?file=/src/App.js) with description. I had this problem before 1.2.6...

It would be nice to re-open this issue since it's a valid case where you need to transpile some packages from `node_modules`. I have a UI-Kit built using `vanilla-extract` and...

@Belco90 Do you want to upgrade TS or I can open PR? I saw your notes about updating `tsconfig` in this PR https://github.com/testing-library/eslint-plugin-testing-library/pull/826 but not sure what exactly you want...