Misha Moroshko

Results 66 comments of Misha Moroshko

@graup The expected behavior is for the styles to be generated and not throw an error. > put everything related to backgroundColor in the same collection Having one collection per...

@tyrw The updated types do not seem to include possible errors. For example, if you try to login using the email `[email protected]` the response is: ``` { error: "Bad Request"...

Hey @douglaseggleton, I can't immediately see what would stop us from counting `as={MyComponent}` instances. The AST for `Submit` contains "MyButton" as a string, so curious to know why you found...

Flow is not supported at the moment (we only have TypeScript support). PR is welcome!

@jpt You're right. Currently, the only way to provide a config is to specify a config file path. How'd you imagine passing the config via the command line? Could you...

Yeah, I like the idea of being able to run the scanner programmatically. How about passing the config to the `scanner` directly? ``` import { scanner } from 'react-scanner'; const...

@rraziel Mind taking a look?

I'm not it's a good idea to pollute the global scope with all the available operators. You can just do: ```js const { of } = Rx.Observable; const { map...

Could you describe your use case? Why would you want to blur programatically?

> which I did by tapping the bottom-right return/submit button Is this button part of the keyboard? Isn't the input loses focus when you tap this button? Maybe you could...