I'm trying to build out a customizer tool that allows someone to customize a widget on the right-hand side of the screen.
So on the left I have fields (text, color pickers, dropdown, etc) that update component states on the page and the widget is on the right-hand side of the screen with parameters mapped to the component states.
The problem is that when I update the fields (which update the component states) it doesn't update the value within the widget. I believe I need to rebuild the widget when any of those fields change, but not sure how to accomplish that in realtime without reloading the page.
Any suggestions?