Skip to content

Commit 89c3c30

Browse files
committed
refactor: replace chevron icons
1 parent 5424389 commit 89c3c30

21 files changed

Lines changed: 33 additions & 33 deletions

app/components/Code/FileTree.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ watch(
5959
:aria-pressed="isNodeActive(node)"
6060
:style="{ paddingLeft: `${depth * 12 + 12}px` }"
6161
@click="toggleDir(node.path)"
62-
:classicon="isExpanded(node.path) ? 'i-carbon:chevron-down' : 'i-carbon:chevron-right'"
62+
:classicon="isExpanded(node.path) ? 'i-lucide:chevron-down' : 'i-lucide:chevron-right'"
6363
>
6464
<svg
6565
class="size-[1em] me-1 shrink-0"

app/components/CollapsibleSection.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ useHead({
100100
<span
101101
v-else
102102
class="w-3 h-3 transition-transform duration-200"
103-
:class="isOpen ? 'i-carbon:chevron-down' : 'i-carbon:chevron-right'"
103+
:class="isOpen ? 'i-lucide:chevron-down' : 'i-lucide:chevron-right'"
104104
aria-hidden="true"
105105
/>
106106
</button>

app/components/Filter/Panel.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ const hasActiveFilters = computed(() => !!filterSummary.value)
200200
{{ filterSummary }}
201201
</span>
202202
<span
203-
class="i-carbon:chevron-down w-4 h-4 text-fg-subtle transition-transform duration-200 shrink-0 ms-auto"
203+
class="i-lucide:chevron-down w-4 h-4 text-fg-subtle transition-transform duration-200 shrink-0 ms-auto"
204204
:class="{ 'rotate-180': isExpanded }"
205205
aria-hidden="true"
206206
/>

app/components/Header/AccountMenu.client.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ function openAuthModal() {
112112

113113
<!-- Chevron -->
114114
<span
115-
class="i-carbon:chevron-down w-3 h-3 transition-transform duration-200"
115+
class="i-lucide:chevron-down w-3 h-3 transition-transform duration-200"
116116
:class="{ 'rotate-180': isOpen }"
117117
aria-hidden="true"
118118
/>

app/components/Header/AccountMenu.server.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
class="inline-flex gap-x-1 items-center justify-center font-mono border border-border rounded-md text-sm px-4 py-2 bg-transparent text-fg border-none"
55
>
66
<span class="font-mono text-sm text-fg-muted">{{ $t('account_menu.connect') }}</span>
7-
<span class="i-carbon:chevron-down w-3 h-3 text-fg-muted" aria-hidden="true" />
7+
<span class="i-lucide:chevron-down w-3 h-3 text-fg-muted" aria-hidden="true" />
88
</div>
99
</div>
1010
</template>

app/components/Header/OrgsDropdown.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ function handleKeydown(event: KeyboardEvent) {
6363
>
6464
{{ $t('header.orgs') }}
6565
<span
66-
class="i-carbon:chevron-down w-3 h-3 transition-transform duration-200"
66+
class="i-lucide:chevron-down w-3 h-3 transition-transform duration-200"
6767
:class="{ 'rotate-180': isOpen }"
6868
aria-hidden="true"
6969
/>

app/components/Header/PackagesDropdown.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ function handleKeydown(event: KeyboardEvent) {
6363
>
6464
{{ $t('header.packages') }}
6565
<span
66-
class="i-carbon:chevron-down w-3 h-3 transition-transform duration-200"
66+
class="i-lucide:chevron-down w-3 h-3 transition-transform duration-200"
6767
:class="{ 'rotate-180': isOpen }"
6868
aria-hidden="true"
6969
/>

app/components/Org/OperationsQueue.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -395,7 +395,7 @@ watch(isExecuting, executing => {
395395
class="flex items-center gap-2 font-mono text-xs text-fg-muted hover:text-fg transition-colors duration-200 select-none"
396396
>
397397
<span
398-
class="i-carbon:chevron-right rtl-flip w-3 h-3 transition-transform duration-200 [[open]>&]:rotate-90"
398+
class="i-lucide:chevron-right rtl-flip w-3 h-3 transition-transform duration-200 [[open]>&]:rotate-90"
399399
aria-hidden="true"
400400
/>
401401
{{ $t('operations.queue.log') }} ({{ completedOperations.length }})

app/components/Org/TeamsPanel.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -371,7 +371,7 @@ watch(lastExecutionTime, () => {
371371
<span
372372
class="w-4 h-4 transition-transform duration-200 rtl-flip"
373373
:class="[
374-
expandedTeams.has(teamName) ? 'i-carbon:chevron-down' : 'i-carbon:chevron-right',
374+
expandedTeams.has(teamName) ? 'i-lucide:chevron-down' : 'i-lucide:chevron-right',
375375
'text-fg-muted',
376376
]"
377377
aria-hidden="true"

app/components/Package/DeprecatedTree.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ function getDepthStyle(depth: DependencyDepth) {
6060
</span>
6161
</span>
6262
<span
63-
class="i-carbon:chevron-down w-4 h-4 transition-transform duration-200 shrink-0"
63+
class="i-lucide:chevron-down w-4 h-4 transition-transform duration-200 shrink-0"
6464
:class="{ 'rotate-180': isExpanded }"
6565
aria-hidden="true"
6666
/>

0 commit comments

Comments
 (0)