Hoping someone can help me figure out what I'm doing wrong. I've been struggling to figure this out all week.
I'm trying to pass complex objects (in this case an Extent) between widgets.
In the sender widget, I'm using this:
MutableStoreManager.getInstance().updateStateValue(id, 'searchExtent', ext);
And the receiving widget has this in the mapExtraStateProps function:
const newSearchExtent = props?.mutableStateProps?.searchExtent;
But it always comes back as undefined.
Has anyone successfully passed complex JavaScript objects between widgets?