Leonardo Falk

Results 4 comments of Leonardo Falk

Well, I don't think this is actually an issue, I think it's more like ransack need you to tell which type is that attribute. The fact is, based on the...

Kinda late now, but I've developed a opt-in solution for this [here](https://github.com/leonardofalk/audited_async), I'd appreciate some feedback.

Just use `advancedCombineReducers`: ```ts // createStore.ts import { combineReducers } from 'redux' import { createStore as createDynamicStore } from 'redux-dynamic-modules' import { createReducer } from 'reduxsauce' // can use your...

Applying custom mask upon change should do the trick This is an example for CPF/CNPJ field: ```jsx import { TextInputMask } from 'react-native-masked-text' import { validateCnpj } from 'react-native-masked-text/dist/lib/masks/cnpj.mask' import...