I’ve run into a limitation with auto layout when working with components that use slots.
Currently, the auto layout direction (horizontal/vertical) defined in the main component seems to be locked for any instances. When content is placed into a slot, it inherits that direction and there’s no way to override it locally at the instance level.
This becomes restrictive in cases where the same structural component needs to adapt to slightly different layout contexts.
Is there a technical reason why auto layout direction is fixed this way? For example, is it tied to how slots are implemented under the hood or how layout calculations propagate from the main component?
It would be very useful to allow overriding the auto layout direction per slot.
