@@ -57,13 +57,13 @@ const typesHref = computed(() => {
5757 <ul class =" flex items-center gap-1.5 list-none m-0 p-0" >
5858 <!-- TypeScript types badge -->
5959 <li v-if =" !props.isBinary" class =" contents" >
60- <TooltipApp :text =" typesTooltip" >
60+ <TooltipApp :text =" typesTooltip" strategy = " fixed " >
6161 <LinkBase
6262 v-if =" typesHref"
6363 variant =" button-secondary"
6464 size =" small"
6565 :to =" typesHref"
66- classicon =" i-carbon- checkmark"
66+ classicon =" i-carbon: checkmark"
6767 >
6868 {{ $t('package.metrics.types_label') }}
6969 </LinkBase >
@@ -73,10 +73,10 @@ const typesHref = computed(() => {
7373 :tabindex =" 0"
7474 :classicon ="
7575 isLoading
76- ? 'i-carbon- circle-dash motion-safe:animate-spin'
76+ ? 'i-carbon: circle-dash motion-safe:animate-spin'
7777 : hasTypes
78- ? 'i-carbon- checkmark'
79- : 'i-carbon- close'
78+ ? 'i-carbon: checkmark'
79+ : 'i-carbon: close'
8080 "
8181 >
8282 {{ $t('package.metrics.types_label') }}
@@ -88,16 +88,17 @@ const typesHref = computed(() => {
8888 <li class =" contents" >
8989 <TooltipApp
9090 :text =" isLoading ? '' : hasEsm ? $t('package.metrics.esm') : $t('package.metrics.no_esm')"
91+ strategy =" fixed"
9192 >
9293 <TagStatic
9394 tabindex =" 0"
9495 :variant =" hasEsm && !isLoading ? 'default' : 'ghost'"
9596 :classicon ="
9697 isLoading
97- ? 'i-carbon- circle-dash motion-safe:animate-spin'
98+ ? 'i-carbon: circle-dash motion-safe:animate-spin'
9899 : hasEsm
99- ? 'i-carbon- checkmark'
100- : 'i-carbon- close'
100+ ? 'i-carbon: checkmark'
101+ : 'i-carbon: close'
101102 "
102103 >
103104 ESM
@@ -107,12 +108,12 @@ const typesHref = computed(() => {
107108
108109 <!-- CJS badge -->
109110 <li v-if =" isLoading || hasCjs" class =" contents" >
110- <TooltipApp :text =" isLoading ? '' : $t('package.metrics.cjs')" >
111+ <TooltipApp :text =" isLoading ? '' : $t('package.metrics.cjs')" strategy = " fixed " >
111112 <TagStatic
112113 tabindex =" 0"
113114 :variant =" isLoading ? 'ghost' : 'default'"
114115 :classicon ="
115- isLoading ? 'i-carbon- circle-dash motion-safe:animate-spin' : 'i-carbon- checkmark'
116+ isLoading ? 'i-carbon: circle-dash motion-safe:animate-spin' : 'i-carbon: checkmark'
116117 "
117118 >
118119 CJS
0 commit comments