@@ -108,14 +108,11 @@ const versionGroups = computed(() => {
108108})
109109
110110async function toggleGroup(groupKey : string ) {
111- console .log (' toggleGroup' , groupKey )
112111 if (expandedGroups .value .has (groupKey )) {
113112 expandedGroups .value .delete (groupKey )
114113 return
115114 }
116115 expandedGroups .value .add (groupKey )
117- console .log (' toggleGroup expanded' , fullVersionMap .value )
118- console .log (' toggleGroup expanded' , ! fullVersionMap .value )
119116 if (! fullVersionMap .value ) {
120117 loadingGroup .value = groupKey
121118 try {
@@ -205,23 +202,23 @@ const selectedChangelogContent = computed(() => {
205202 <div class =" flex items-center gap-2 min-w-0" >
206203 <NuxtLink
207204 :to =" packageRoute(packageName)"
208- class =" font-mono text-lg font-medium hover:text-fg-muted transition-colors min-w-0 truncate"
205+ class =" text-lg font-medium hover:text-fg-muted transition-colors min-w-0 truncate"
209206 :title =" packageName"
210207 dir =" ltr"
211208 >
212209 <span v-if =" orgName" class =" text-fg-muted" >@{{ orgName }}/</span
213210 >{{ orgName ? packageName.replace(`@${orgName}/`, '') : packageName }}
214211 </NuxtLink >
215212 <span class =" text-fg-subtle shrink-0" >/</span >
216- <span class =" font-mono text-sm text-fg-muted shrink-0" >Version History</span >
213+ <h1 class =" text-sm text-fg-muted shrink-0" >Version History</h1 >
217214 </div >
218215 <InputBase
219216 v-model =" versionFilter"
220217 type =" text"
221218 placeholder =" Filter versions…"
222219 aria-label =" Filter versions"
223220 size =" small"
224- class =" w-36 sm:w-44 font-mono "
221+ class =" w-36 sm:w-44"
225222 />
226223 </div >
227224 </header >
@@ -252,7 +249,7 @@ const selectedChangelogContent = computed(() => {
252249 </div >
253250 <LinkBase
254251 :to =" packageRoute(packageName, tagRows[0].version)"
255- class =" font-mono text-2xl font-semibold tracking-tight after:absolute after:inset-0 after:content-['']"
252+ class =" text-2xl font-semibold tracking-tight after:absolute after:inset-0 after:content-['']"
256253 dir =" ltr"
257254 >{{ tagRows[0].version }}</LinkBase
258255 >
@@ -300,7 +297,7 @@ const selectedChangelogContent = computed(() => {
300297 <!-- Version -->
301298 <LinkBase
302299 :to =" packageRoute(packageName, row.version)"
303- class =" font-mono text-sm flex-1 min-w-0 after:absolute after:inset-0 after:content-['']"
300+ class =" text-sm flex-1 min-w-0 after:absolute after:inset-0 after:content-['']"
304301 dir =" ltr"
305302 >
306303 {{ row.version }}
@@ -345,7 +342,7 @@ const selectedChangelogContent = computed(() => {
345342 role =" status"
346343 aria-live =" polite"
347344 >
348- No versions match < span class = " font-mono " > {{ versionFilter }}</ span >
345+ No versions match {{ versionFilter }}
349346 </div >
350347
351348 <!-- List + changelog side panel -->
@@ -383,12 +380,10 @@ const selectedChangelogContent = computed(() => {
383380 aria-hidden =" true"
384381 />
385382 </span >
386- <span class =" font-mono text-sm font-medium" >{{ item.label }}</span >
383+ <span class =" text-sm font-medium" >{{ item.label }}</span >
387384 <span class =" text-xs text-fg-subtle" >({{ item.versions.length }})</span >
388385 <span class =" ms-auto flex items-center gap-3 shrink-0" >
389- <span class =" font-mono text-xs text-fg-muted" dir =" ltr" >{{
390- item.versions[0]
391- }}</span >
386+ <span class =" text-xs text-fg-muted" dir =" ltr" >{{ item.versions[0] }}</span >
392387 <DateTime
393388 v-if =" getVersionTime(item.versions[0])"
394389 :datetime =" getVersionTime(item.versions[0])!"
@@ -420,7 +415,7 @@ const selectedChangelogContent = computed(() => {
420415 <LinkBase
421416 :to =" packageRoute(packageName, item.version)"
422417 :prefetch =" false"
423- class =" font-mono text-sm after:absolute after:inset-0 after:content-['']"
418+ class =" text-sm after:absolute after:inset-0 after:content-['']"
424419 :class ="
425420 fullVersionMap?.get(item.version)?.deprecated
426421 ? 'text-red-700 dark:text-red-400'
@@ -519,12 +514,10 @@ const selectedChangelogContent = computed(() => {
519514 <span class =" w-4 h-4 flex items-center justify-center text-fg-subtle shrink-0" >
520515 <span class =" i-lucide:chevron-right w-3 h-3 rtl-flip" aria-hidden =" true" />
521516 </span >
522- <span class =" font-mono text-sm font-medium" >{{ item.label }}</span >
517+ <span class =" text-sm font-medium" >{{ item.label }}</span >
523518 <span class =" text-xs text-fg-subtle" >({{ item.versions.length }})</span >
524519 <span class =" ms-auto flex items-center gap-3 shrink-0" >
525- <span class =" font-mono text-xs text-fg-muted" dir =" ltr" >{{
526- item.versions[0]
527- }}</span >
520+ <span class =" text-xs text-fg-muted" dir =" ltr" >{{ item.versions[0] }}</span >
528521 <DateTime
529522 v-if =" getVersionTime(item.versions[0] ?? '')"
530523 :datetime =" getVersionTime(item.versions[0] ?? '')!"
@@ -557,7 +550,7 @@ const selectedChangelogContent = computed(() => {
557550 class =" i-lucide:scroll-text w-3.5 h-3.5 text-fg-subtle shrink-0"
558551 aria-hidden =" true"
559552 />
560- <span class =" font-mono text-sm font-medium truncate" dir =" ltr" >
553+ <span class =" text-sm font-medium truncate" dir =" ltr" >
561554 v{{ selectedChangelogVersion }}
562555 </span >
563556 </div >
0 commit comments