Jeff Rosen

Results 58 comments of Jeff Rosen

Hey! I'm on an M1 MacBook Pro. For ARM64 machines homebrew installs to /opt/homebrew instead of /usr/local. What is your suggestion on getting this to work? Creating symlinks of literally...

This "controlled" behavior could also greatly enhance the experience with other view library/framework wrappers

The only super confusing part would be how to handle animations during state changes, especially since tagify would no longer have any idea of identity (especially if you have duplicates...

Also, rendering things onto the DOM between state changes would require either: a manual deletion and recreation of all tag DOM elements on every state change, intelligently determining how/if to...

You could have it so that state is formed as such: That way identity can be maintained for animation purposes, especially when duplicates are enabled. This guid information would be...

Like where it can operate like this for example ``` const [tags, setTags] = useState(["Kevin", "Box"]) return( setTags([])>Clear All { setTags(event.target.value) }} /> ) ```

I agree that the "load original values" thing isn't an issue and makes sense. The only issue is that feeding state back into the component literally doesn't work. No react...

My bad!! I didn't mean to come off as rude. Having the onChanged event set the react state which feeds back into 'value' prop causes a double firing of events...