@@ -363,7 +363,7 @@ function getTagVersions(tag: string): VersionDisplay[] {
363363 <div class =" flex items-center justify-between gap-2" >
364364 <NuxtLink
365365 :to =" versionRoute(row.primaryVersion.version)"
366- class =" font-mono text-sm transition-colors duration-200 truncate"
366+ class =" font-mono text-sm transition-colors duration-200 truncate inline-flex items-center gap-1 "
367367 :class ="
368368 row.primaryVersion.deprecated
369369 ? 'text-red-400 hover:text-red-300'
@@ -377,6 +377,11 @@ function getTagVersions(tag: string): VersionDisplay[] {
377377 : row.primaryVersion.version
378378 "
379379 >
380+ <span
381+ v-if =" row.primaryVersion.deprecated"
382+ class =" i-carbon-warning-hex w-3.5 h-3.5 shrink-0"
383+ aria-hidden =" true"
384+ />
380385 {{ row.primaryVersion.version }}
381386 </NuxtLink >
382387 <div class =" flex items-center gap-2 shrink-0" >
@@ -418,7 +423,7 @@ function getTagVersions(tag: string): VersionDisplay[] {
418423 <div class =" flex items-center justify-between gap-2" >
419424 <NuxtLink
420425 :to =" versionRoute(v.version)"
421- class =" font-mono text-xs transition-colors duration-200 truncate"
426+ class =" font-mono text-xs transition-colors duration-200 truncate inline-flex items-center gap-1 "
422427 :class ="
423428 v.deprecated
424429 ? 'text-red-400 hover:text-red-300'
@@ -430,6 +435,11 @@ function getTagVersions(tag: string): VersionDisplay[] {
430435 : v.version
431436 "
432437 >
438+ <span
439+ v-if =" v.deprecated"
440+ class =" i-carbon-warning-hex w-3 h-3 shrink-0"
441+ aria-hidden =" true"
442+ />
433443 {{ v.version }}
434444 </NuxtLink >
435445 <div class =" flex items-center gap-2 shrink-0" >
@@ -510,7 +520,7 @@ function getTagVersions(tag: string): VersionDisplay[] {
510520 <div class =" flex items-center justify-between gap-2" >
511521 <NuxtLink
512522 :to =" versionRoute(row.primaryVersion.version)"
513- class =" font-mono text-xs transition-colors duration-200 truncate"
523+ class =" font-mono text-xs transition-colors duration-200 truncate inline-flex items-center gap-1 "
514524 :class ="
515525 row.primaryVersion.deprecated
516526 ? 'text-red-400 hover:text-red-300'
@@ -524,6 +534,11 @@ function getTagVersions(tag: string): VersionDisplay[] {
524534 : row.primaryVersion.version
525535 "
526536 >
537+ <span
538+ v-if =" row.primaryVersion.deprecated"
539+ class =" i-carbon-warning-hex w-3 h-3 shrink-0"
540+ aria-hidden =" true"
541+ />
527542 {{ row.primaryVersion.version }}
528543 </NuxtLink >
529544 <div class =" flex items-center gap-2 shrink-0" >
@@ -580,7 +595,7 @@ function getTagVersions(tag: string): VersionDisplay[] {
580595 <NuxtLink
581596 v-if =" group.versions[0]?.version"
582597 :to =" versionRoute(group.versions[0]?.version)"
583- class =" font-mono text-xs transition-colors duration-200 truncate"
598+ class =" font-mono text-xs transition-colors duration-200 truncate inline-flex items-center gap-1 "
584599 :class ="
585600 group.versions[0]?.deprecated
586601 ? 'text-red-400 hover:text-red-300'
@@ -594,6 +609,11 @@ function getTagVersions(tag: string): VersionDisplay[] {
594609 : group.versions[0]?.version
595610 "
596611 >
612+ <span
613+ v-if =" group.versions[0]?.deprecated"
614+ class =" i-carbon-warning-hex w-3 h-3 shrink-0"
615+ aria-hidden =" true"
616+ />
597617 {{ group.versions[0]?.version }}
598618 </NuxtLink >
599619 </div >
@@ -636,7 +656,7 @@ function getTagVersions(tag: string): VersionDisplay[] {
636656 <NuxtLink
637657 v-if =" group.versions[0]?.version"
638658 :to =" versionRoute(group.versions[0]?.version)"
639- class =" font-mono text-xs transition-colors duration-200 truncate"
659+ class =" font-mono text-xs transition-colors duration-200 truncate inline-flex items-center gap-1 "
640660 :class ="
641661 group.versions[0]?.deprecated
642662 ? 'text-red-400 hover:text-red-300'
@@ -650,6 +670,11 @@ function getTagVersions(tag: string): VersionDisplay[] {
650670 : group.versions[0]?.version
651671 "
652672 >
673+ <span
674+ v-if =" group.versions[0]?.deprecated"
675+ class =" i-carbon-warning-hex w-3 h-3 shrink-0"
676+ aria-hidden =" true"
677+ />
653678 {{ group.versions[0]?.version }}
654679 </NuxtLink >
655680 </div >
@@ -690,7 +715,7 @@ function getTagVersions(tag: string): VersionDisplay[] {
690715 <div class =" flex items-center justify-between gap-2" >
691716 <NuxtLink
692717 :to =" versionRoute(v.version)"
693- class =" font-mono text-xs transition-colors duration-200 truncate"
718+ class =" font-mono text-xs transition-colors duration-200 truncate inline-flex items-center gap-1 "
694719 :class ="
695720 v.deprecated
696721 ? 'text-red-400 hover:text-red-300'
@@ -702,6 +727,11 @@ function getTagVersions(tag: string): VersionDisplay[] {
702727 : v.version
703728 "
704729 >
730+ <span
731+ v-if =" v.deprecated"
732+ class =" i-carbon-warning-hex w-3 h-3 shrink-0"
733+ aria-hidden =" true"
734+ />
705735 {{ v.version }}
706736 </NuxtLink >
707737 <div class =" flex items-center gap-2 shrink-0" >
0 commit comments