At the moment, components that are using a customInput are not being rendered at all.
This is happening because the containedView of a CustomInputComponent.ComponentView is not updating BentoReusableView since it wasn't calling containerViewDidChange(from:new:).
This PR fixes that; I've also added a snapshot test in order to prevent similar issues to happen in the future.
At the moment, components that are using a customInput are not being rendered at all.
This is happening because the
containedView
of aCustomInputComponent.ComponentView
is not updatingBentoReusableView
since it wasn't callingcontainerViewDidChange(from:new:)
.This PR fixes that; I've also added a snapshot test in order to prevent similar issues to happen in the future.