tl;dr I’m looking for a way to duplicate a page that duplicates its main components as new main components instead of instances of the originals.
Ok here’s what I mean:
On Page 1
I create a few frames:
Card 1 (main component)
Header 1 (main component)
-
Frame 1
usingCard 1
andHeader 1
instances
Currently when I duplicate Page 1
, Page 2
has the following frames:
Card 1 (instance)
Header 1 (instance)
-
Frame 1
using aCard 1
andHeader 1
instances
What I would really love to do in this situation is duplicate the page and play with different iterations of the Card and Header components, with Frame 1 reacting accordingly. It would look like this:
Card 2 (main)
Header 2 (main)
-
Frame 2
using aCard 2
andHeader 2
instances
Currently if I want to do that, the workflow would be:
- Detach
Card 1
from main and make it a componentCard 2
- Detach
Header 1
from main and make it a componentHeader 2
- Swap all
Card 1
instances in Frame 1 withCard 2
instances - Swap all Header 1 instances in Frame 1 with Header 2 instances
- Iterate
Is anybody aware of either a better workaround or a plugin or setting that would enable this?
Thank you and forgive the complicated description.