@@ -85,19 +85,18 @@ const codeDisplay = computed(() => {
8585
8686<template >
8787 <div of-auto >
88+ <FlowmapNode
89+ :lines =" { bottom: true }" pt4
90+ :active =" selected != null"
91+ >
92+ <template #content >
93+ <div p2 >
94+ <DisplayModuleId :id =" info.id" />
95+ </div >
96+ </template >
97+ </FlowmapNode >
8898 <div w-max flex =" ~ gap-4" >
8999 <div select-none >
90- <FlowmapNode
91- :lines =" { bottom: true }" py2
92- :active =" selected != null"
93- >
94- <template #content >
95- <div p2 >
96- <DisplayModuleId :id =" info.id" />
97- </div >
98- </template >
99- </FlowmapNode >
100-
101100 <FlowmapExpandable
102101 :items =" resolveIds"
103102 :expandable =" resolveIds.length > 0"
@@ -112,10 +111,11 @@ const codeDisplay = computed(() => {
112111 <template #container >
113112 <div >
114113 <FlowmapNodeModuleInfo
115- v-for =" item of resolveIds"
114+ v-for =" ( item, index) of resolveIds"
116115 :key =" item.id"
117116 :item =" item"
118117 :active =" isSelectedAncestor(item)"
118+ :class =" index > 0 ? 'pt-2' : ''"
119119 @select =" select"
120120 @activate =" activate"
121121 />
@@ -137,10 +137,11 @@ const codeDisplay = computed(() => {
137137 <template #container >
138138 <div >
139139 <FlowmapNodeModuleInfo
140- v-for =" item of loads"
140+ v-for =" ( item, index) of loads"
141141 :key =" item.id"
142142 :item =" item"
143143 :active =" isSelectedAncestor(item)"
144+ :class =" index > 0 ? 'pt-2' : ''"
144145 @select =" select"
145146 @activate =" activate"
146147 />
@@ -161,30 +162,31 @@ const codeDisplay = computed(() => {
161162 <template #container >
162163 <div >
163164 <FlowmapNodeModuleInfo
164- v-for =" item of transforms"
165+ v-for =" ( item, index) of transforms"
165166 :key =" item.id"
166167 :item =" item"
167168 :active =" isSelectedAncestor(item)"
169+ :class =" index > 0 ? 'pt-2' : ''"
168170 @select =" select"
169171 @activate =" activate"
170172 />
171173 </div >
172174 </template >
173175 </FlowmapExpandable >
174176
175- <FlowmapNode :lines =" { top: true, bottom: true }" pl6 py2 >
177+ <FlowmapNode :lines =" { top: true, bottom: true }" pl6 pt4 >
176178 <template #content >
177179 <div i-ph-shapes-duotone /> Chunk
178180 </template >
179181 </FlowmapNode >
180182
181- <FlowmapNode :lines =" { top: true, bottom: true }" pl6 py2 >
183+ <FlowmapNode :lines =" { top: true, bottom: true }" pl6 pt4 >
182184 <template #content >
183185 <div i-ph-tree-duotone /> Tree shake
184186 </template >
185187 </FlowmapNode >
186188
187- <FlowmapNode :lines =" { top: true }" pl6 py2 >
189+ <FlowmapNode :lines =" { top: true }" pl6 pt4 >
188190 <template #content >
189191 <div i-ph-package-duotone /> Generate
190192 </template >
@@ -193,7 +195,7 @@ const codeDisplay = computed(() => {
193195
194196 <div
195197 v-if =" codeDisplay"
196- w-200
198+ w-200 m4
197199 border =" ~ base rounded-lg" bg-glass of-hidden
198200 grid =" ~ rows-[max-content_1fr]"
199201 >
0 commit comments