Josh J

Results 6 issues of Josh J

Thanks for the great library. I am having an issue with the floating label, I gave users the ability to reset the form value using `redux-form` like so: ``` _clearText...

State changes aren't being persisted unless I call `persistor.persist()`. The initial state is generated, then stored in a cookie, but any changes after that aren't being saved. Tried with default...

Was causing iOS apps to crash when special characters were present in a response. Have updated the encoding type to include special characters.

If an incorrect type is passed to `type` it throws an error which lists correct types, currently this list fails to mention the `any` type

Need to add a way of checking for specific values, including enumerations Something like: ```js propA: type('enum', ['A', 2, 'C']), propB: type('exact', 'someSpecificValue'); ```

With the upcoming release of `React.useContextSelector` we can remove `SimpleStateConsumer` and move to a full hooks-based solution without impacting performance, as was originally intended. This is also a good chance...