Skip to content

Commit 4d42429

Browse files
committed
fix: icon class name
1 parent ffb7bd9 commit 4d42429

10 files changed

Lines changed: 18 additions & 18 deletions

File tree

app/components/CollapsibleSection.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ useHead({
9494
>
9595
<span
9696
v-if="isLoading"
97-
class="i-i-svg-spinners:ring-resize w-3 h-3 motion-safe:animate-spin"
97+
class="i-svg-spinners:ring-resize w-3 h-3 motion-safe:animate-spin"
9898
aria-hidden="true"
9999
/>
100100
<span

app/components/Header/AccountMenu.client.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -231,7 +231,7 @@ function openAuthModal() {
231231
<span class="w-8 h-8 rounded-full bg-bg-muted flex items-center justify-center">
232232
<span
233233
v-if="isNpmConnecting"
234-
class="i-i-svg-spinneacka w-4 h-4 text-yellow-500 animate-spin"
234+
class="i-svg-spinners:ring-resize w-4 h-4 text-yellow-500 animate-spin"
235235
aria-hidden="true"
236236
/>
237237
<span v-else class="i-lucide:terminal w-4 h-4 text-fg-muted" aria-hidden="true" />

app/components/Org/MembersPanel.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -407,7 +407,7 @@ watch(lastExecutionTime, () => {
407407
<!-- Loading state -->
408408
<div v-if="isLoading && memberList.length === 0" class="p-8 text-center">
409409
<span
410-
class="i-i-svg-spinners:ring-resize w-5 h-5 text-fg-muted animate-spin mx-auto"
410+
class="i-svg-spinners:ring-resize w-5 h-5 text-fg-muted animate-spin mx-auto"
411411
aria-hidden="true"
412412
/>
413413
<p class="font-mono text-sm text-fg-muted mt-2">{{ $t('org.members.loading') }}</p>

app/components/Org/OperationsQueue.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ function getStatusIcon(status: string): string {
162162
case 'approved':
163163
return 'i-lucide:check'
164164
case 'running':
165-
return 'i-i-svg-spinners:ring-resize'
165+
return 'i-svg-spinners:ring-resize'
166166
case 'completed':
167167
return 'i-lucide:check-filled'
168168
case 'failed':

app/components/Org/TeamsPanel.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -329,7 +329,7 @@ watch(lastExecutionTime, () => {
329329
<!-- Loading state -->
330330
<div v-if="isLoadingTeams && teams.length === 0" class="p-8 text-center">
331331
<span
332-
class="i-i-svg-spinners:ring-resize w-5 h-5 text-fg-muted motion-safe:animate-spin mx-auto"
332+
class="i-svg-spinners:ring-resize w-5 h-5 text-fg-muted motion-safe:animate-spin mx-auto"
333333
aria-hidden="true"
334334
/>
335335
<p class="font-mono text-sm text-fg-muted mt-2">{{ $t('org.teams.loading') }}</p>
@@ -388,7 +388,7 @@ watch(lastExecutionTime, () => {
388388
</span>
389389
<span
390390
v-if="isLoadingUsers[teamName]"
391-
class="i-i-svg-spinners:ring-resize w-3 h-3 text-fg-muted motion-safe:animate-spin"
391+
class="i-svg-spinners:ring-resize w-3 h-3 text-fg-muted motion-safe:animate-spin"
392392
aria-hidden="true"
393393
/>
394394
</button>

app/components/Package/AccessControls.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ watch(
173173
<!-- Loading state -->
174174
<div v-if="isLoadingCollaborators && collaboratorList.length === 0" class="py-4 text-center">
175175
<span
176-
class="i-i-svg-spinners:ring-resize w-4 h-4 text-fg-muted animate-spin mx-auto"
176+
class="i-svg-spinners:ring-resize w-4 h-4 text-fg-muted animate-spin mx-auto"
177177
aria-hidden="true"
178178
/>
179179
</div>

app/components/Package/MetricsBadges.vue

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ const typesHref = computed(() => {
7373
:tabindex="0"
7474
:classicon="
7575
isLoading
76-
? 'i-i-svg-spinners:ring-resize motion-safe:animate-spin'
76+
? 'i-svg-spinners:ring-resize motion-safe:animate-spin'
7777
: hasTypes
7878
? 'i-lucide:check'
7979
: 'i-lucide:circle-x'
@@ -95,7 +95,7 @@ const typesHref = computed(() => {
9595
:variant="hasEsm && !isLoading ? 'default' : 'ghost'"
9696
:classicon="
9797
isLoading
98-
? 'i-i-svg-spinners:ring-resize motion-safe:animate-spin'
98+
? 'i-svg-spinners:ring-resize motion-safe:animate-spin'
9999
: hasEsm
100100
? 'i-lucide:check'
101101
: 'i-lucide:circle-x'
@@ -113,7 +113,7 @@ const typesHref = computed(() => {
113113
tabindex="0"
114114
:variant="isLoading ? 'ghost' : 'default'"
115115
:classicon="
116-
isLoading ? 'i-i-svg-spinners:ring-resize motion-safe:animate-spin' : 'i-lucide:check'
116+
isLoading ? 'i-svg-spinners:ring-resize motion-safe:animate-spin' : 'i-lucide:check'
117117
"
118118
>
119119
CJS

app/components/Package/Versions.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -440,7 +440,7 @@ function majorGroupContainsCurrent(group: (typeof otherMajorGroups.value)[0]): b
440440
>
441441
<span
442442
v-if="loadingTags.has(row.tag)"
443-
class="i-i-svg-spinners:ring-resize w-3 h-3 motion-safe:animate-spin"
443+
class="i-svg-spinners:ring-resize w-3 h-3 motion-safe:animate-spin"
444444
data-testid="loading-spinner"
445445
aria-hidden="true"
446446
/>
@@ -595,7 +595,7 @@ function majorGroupContainsCurrent(group: (typeof otherMajorGroups.value)[0]): b
595595
>
596596
<span
597597
v-if="otherVersionsLoading"
598-
class="i-i-svg-spinners:ring-resize w-3 h-3 motion-safe:animate-spin"
598+
class="i-svg-spinners:ring-resize w-3 h-3 motion-safe:animate-spin"
599599
data-testid="loading-spinner"
600600
aria-hidden="true"
601601
/>

app/components/VersionSelector.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -540,7 +540,7 @@ watch(
540540
>
541541
<span
542542
v-if="group.isLoading"
543-
class="i-i-svg-spinners:ring-resize w-3 h-3 motion-safe:animate-spin"
543+
class="i-svg-spinners:ring-resize w-3 h-3 motion-safe:animate-spin"
544544
aria-hidden="true"
545545
/>
546546
<span

app/pages/package/[[org]]/[name].vue

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -824,7 +824,7 @@ const showSkeleton = shallowRef(false)
824824
>
825825
<span
826826
v-if="isLoadingLikeData"
827-
class="i-i-svg-spinners:ring-resize w-3 h-3 motion-safe:animate-spin my-0.5"
827+
class="i-svg-spinners:ring-resize w-3 h-3 motion-safe:animate-spin my-0.5"
828828
aria-hidden="true"
829829
/>
830830
<span v-else>
@@ -963,7 +963,7 @@ const showSkeleton = shallowRef(false)
963963
class="inline-flex items-center gap-1 text-fg-subtle"
964964
>
965965
<span
966-
class="i-i-svg-spinners:ring-resize w-3 h-3 motion-safe:animate-spin"
966+
class="i-svg-spinners:ring-resize w-3 h-3 motion-safe:animate-spin"
967967
aria-hidden="true"
968968
/>
969969
</span>
@@ -1031,7 +1031,7 @@ const showSkeleton = shallowRef(false)
10311031
class="inline-flex items-center gap-1 text-fg-subtle"
10321032
>
10331033
<span
1034-
class="i-i-svg-spinners:ring-resize w-3 h-3 motion-safe:animate-spin"
1034+
class="i-svg-spinners:ring-resize w-3 h-3 motion-safe:animate-spin"
10351035
aria-hidden="true"
10361036
/>
10371037
</span>
@@ -1054,7 +1054,7 @@ const showSkeleton = shallowRef(false)
10541054
class="inline-flex items-center gap-1 text-fg-subtle"
10551055
>
10561056
<span
1057-
class="i-i-svg-spinners:ring-resize w-3 h-3 motion-safe:animate-spin"
1057+
class="i-svg-spinners:ring-resize w-3 h-3 motion-safe:animate-spin"
10581058
aria-hidden="true"
10591059
/>
10601060
</span>
@@ -1321,7 +1321,7 @@ const showSkeleton = shallowRef(false)
13211321
class="mt-8 flex items-center gap-2 text-fg-subtle text-sm"
13221322
>
13231323
<span
1324-
class="i-i-svg-spinners:ring-resize w-4 h-4 motion-safe:animate-spin"
1324+
class="i-svg-spinners:ring-resize w-4 h-4 motion-safe:animate-spin"
13251325
aria-hidden="true"
13261326
/>
13271327
<span>{{ $t('package.provenance_section.title') }}…</span>

0 commit comments

Comments
 (0)