Alex Hlavinka
Alex Hlavinka
Hi, I'm trying to accomplish something similar but using the Controller implementation of react-hook-form with Maskito and Material UI. I have the mask working when I am interacting with the...
@nextZed Hey - did you have any ideas on the use case I shared? Thanks!
@nextZed sure! [Here is a demo!](https://stackblitz.com/edit/vitejs-vite-mimshw?file=src%2FDemoForm.tsx). Let me know if you have any questions. I appreciate your help!
@nextZed that's great! Thank you so much for your help. Just one quick follow-up question. Based on the discussion above, should the implementation we're discussing now mask the default form...
@adhtruong, I have an update ready to update this pull request, but after merging with main, I am encountering issues realted to some typing related to SQLAlchemy factories. Please let...
@adhtruong Interestingly, when I ran pre-commit separately, it raised the mypy errors, but when it ran as part of the git hook, it passed. Not sure what is happening there....
@adhtruong I'm sorry if I didn't explain myself accurately, but the kwargs that get passed to the callable can only be passed during the declaration of the factory, not at...
@adhtruong @guacs let me know if I can clarify or respond on this any further or how you want to proceed. Thanks!
@adhtruong thanks for the feedback! As I see it, our options are: 1) drop support for passing `kwargs` to callable `Param`s (so the user doesn't confuse the two uses of...
@adhtruong answered based on my proposal ```python class Factory(DataclassFactory[MyType]): a = Param(default_factory=lambda: 1) # This example results in an attribute error because no parameter values get mapped # into the...