Skip to content

Commit a20fdab

Browse files
committed
chore: wip
1 parent 4a6dc72 commit a20fdab

File tree

4 files changed

+16
-16
lines changed

4 files changed

+16
-16
lines changed

storage/framework/defaults/components/Dashboard/Sidebar.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -239,7 +239,7 @@ const sectionContent: Record<string, SectionContent> = {
239239
icon: 'i-hugeicons-printer',
240240
text: 'Printers',
241241
children: [
242-
{ to: '/commerce/printers', icon: 'i-hugeicons-device-laptop', text: 'Devices' },
242+
{ to: '/commerce/printers/devices', icon: 'i-hugeicons-device-laptop', text: 'Devices' },
243243
{ to: '/commerce/printers/prints', icon: 'i-hugeicons-document-01', text: 'Prints' }
244244
]
245245
}

storage/framework/defaults/views/dashboard/logs/index.vue

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -441,17 +441,17 @@ const toggleProject = (projectId: string) => {
441441
const getLogIcon = (type: Log['type']) => {
442442
switch (type) {
443443
case 'error':
444-
return 'i-hugeicons-outline-exclamation-circle'
444+
return 'i-hugeicons-alert-02'
445445
case 'info':
446-
return 'i-hugeicons-outline-information-circle'
446+
return 'i-hugeicons-information-circle'
447447
case 'success':
448-
return 'i-hugeicons-outline-check-circle'
448+
return 'i-hugeicons-checkmark-circle-02'
449449
case 'warning':
450-
return 'i-hugeicons-outline-warning-triangle'
450+
return 'i-hugeicons-alert-02'
451451
case 'mail':
452-
return 'i-hugeicons-outline-mail'
452+
return 'i-hugeicons-mail-01'
453453
default:
454-
return 'i-hugeicons-outline-terminal'
454+
return 'i-hugeicons-computer-terminal-01'
455455
}
456456
}
457457
@@ -729,7 +729,7 @@ watch(timeRange, async () => {
729729
class="flex items-center gap-2 px-4 py-2 rounded-lg bg-gray-100 text-gray-700 hover:bg-gray-200"
730730
@click="resetFilters"
731731
>
732-
<i class="i-hugeicons-outline-x h-4 w-4" aria-hidden="true" />
732+
<i class="i-hugeicons-cancel-01 h-4 w-4" aria-hidden="true" />
733733
Reset Filters
734734
</button>
735735
</div>
@@ -807,7 +807,7 @@ watch(timeRange, async () => {
807807
<td class="px-6 py-4 whitespace-nowrap text-right">
808808
<div class="text-sm text-gray-900">
809809
<i
810-
class="i-hugeicons-outline-clock h-4 w-4 mr-2 text-gray-400"
810+
class="i-hugeicons-clock-01 h-4 w-4 mr-2 text-gray-400"
811811
aria-hidden="true"
812812
/>
813813
{{ new Date(log.timestamp).toLocaleTimeString() }}
@@ -851,7 +851,7 @@ watch(timeRange, async () => {
851851
class="px-2 py-1 text-sm border rounded-md"
852852
:class="currentPage === 1 ? 'opacity-50 cursor-not-allowed' : 'hover:bg-gray-100'"
853853
>
854-
<i class="i-hugeicons-outline-arrow-left h-4 w-4" aria-hidden="true" />
854+
<i class="i-hugeicons-arrow-left-01 h-4 w-4" aria-hidden="true" />
855855
</button>
856856

857857
<button
@@ -881,7 +881,7 @@ watch(timeRange, async () => {
881881
class="px-2 py-1 text-sm border rounded-md"
882882
:class="currentPage === totalPages || totalPages === 0 ? 'opacity-50 cursor-not-allowed' : 'hover:bg-gray-100'"
883883
>
884-
<i class="i-hugeicons-outline-arrow-right h-4 w-4" aria-hidden="true" />
884+
<i class="i-hugeicons-arrow-right-01 h-4 w-4" aria-hidden="true" />
885885
</button>
886886
</div>
887887
</div>
@@ -901,7 +901,7 @@ watch(timeRange, async () => {
901901
class="text-gray-500 hover:text-gray-700"
902902
>
903903
<i
904-
class="i-hugeicons-outline-x h-5 w-5"
904+
class="i-hugeicons-cancel-01 h-5 w-5"
905905
aria-hidden="true"
906906
/>
907907
</button>
@@ -983,7 +983,7 @@ watch(timeRange, async () => {
983983
:key="index"
984984
class="inline-flex items-center px-3 py-1 rounded-full text-sm font-medium bg-gray-100 text-gray-800"
985985
>
986-
<i class="i-hugeicons-outline-paperclip h-4 w-4 mr-1" aria-hidden="true" />
986+
<i class="i-hugeicons-attachment-01 h-4 w-4 mr-1" aria-hidden="true" />
987987
{{ attachment.name }} ({{ attachment.size }})
988988
</div>
989989
</div>
@@ -1041,7 +1041,7 @@ watch(timeRange, async () => {
10411041
<div class="flex items-center">
10421042
<i
10431043
:class="[
1044-
selectedLog.email.userInteraction.opened ? 'i-hugeicons-outline-check-circle text-green-500' : 'i-hugeicons-outline-x-circle text-red-500',
1044+
selectedLog.email.userInteraction.opened ? 'i-hugeicons-checkmark-circle-02 text-green-500' : 'i-hugeicons-cancel-circle text-red-500',
10451045
'h-5 w-5 mr-2'
10461046
]"
10471047
aria-hidden="true"
@@ -1057,7 +1057,7 @@ watch(timeRange, async () => {
10571057
<div class="flex items-center">
10581058
<i
10591059
:class="[
1060-
selectedLog.email.userInteraction.clicked ? 'i-hugeicons-outline-check-circle text-green-500' : 'i-hugeicons-outline-x-circle text-red-500',
1060+
selectedLog.email.userInteraction.clicked ? 'i-hugeicons-checkmark-circle-02 text-green-500' : 'i-hugeicons-cancel-01-circle text-red-500',
10611061
'h-5 w-5 mr-2'
10621062
]"
10631063
aria-hidden="true"

storage/framework/types/dashboard-router.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ declare module 'vue-router/auto-routes' {
5252
'/commerce/manufacturers/': RouteRecordInfo<'/commerce/manufacturers/', '/commerce/manufacturers', Record<never, never>, Record<never, never>>,
5353
'/commerce/orders/': RouteRecordInfo<'/commerce/orders/', '/commerce/orders', Record<never, never>, Record<never, never>>,
5454
'/commerce/payments/': RouteRecordInfo<'/commerce/payments/', '/commerce/payments', Record<never, never>, Record<never, never>>,
55-
'/commerce/printers/': RouteRecordInfo<'/commerce/printers/', '/commerce/printers', Record<never, never>, Record<never, never>>,
55+
'/commerce/printers/devices/': RouteRecordInfo<'/commerce/printers/devices/', '/commerce/printers/devices', Record<never, never>, Record<never, never>>,
5656
'/commerce/printers/prints/': RouteRecordInfo<'/commerce/printers/prints/', '/commerce/printers/prints', Record<never, never>, Record<never, never>>,
5757
'/commerce/products/': RouteRecordInfo<'/commerce/products/', '/commerce/products', Record<never, never>, Record<never, never>>,
5858
'/commerce/products/detail': RouteRecordInfo<'/commerce/products/detail', '/commerce/products/detail', Record<never, never>, Record<never, never>>,

0 commit comments

Comments
 (0)