@finema/finework-layer 0.2.141 → 0.2.142
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +2 -0
- package/app/components/Notifications/index.vue +42 -35
- package/package.json +1 -1
- package/public/admin/assets.png +0 -0
- package/public/admin/clock-in-admin-logo.png +0 -0
- package/public/admin/clock-in-logo.png +0 -0
- package/public/admin/clock-in.png +0 -0
- package/public/admin/contract.png +0 -0
- package/public/admin/cost-sheet.png +0 -0
- package/public/admin/efactoring.png +0 -0
- package/public/admin/employee.png +0 -0
- package/public/admin/evaluation.png +0 -0
- package/public/admin/guarantee.png +0 -0
- package/public/admin/newsletter.png +0 -0
- package/public/admin/pmo-logo.png +0 -0
- package/public/admin/purchase.png +0 -0
- package/public/admin/quotation.png +0 -0
- package/public/admin/recruit.png +0 -0
- package/public/admin/request-admin.png +0 -0
- package/public/admin/request.png +0 -0
- package/public/admin/spider-web.png +0 -0
- package/public/admin/super-admin-logo.png +0 -0
- package/public/admin/super-admin.png +0 -0
- package/public/admin/timesheet-admin-logo.png +0 -0
- package/public/admin/timesheet-logo.png +0 -0
- package/public/admin/timesheet.png +0 -0
- package/public/admin/todo.png +0 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.2.142](https://gitlab.finema.co/finema/finework/finework-frontend-layer/compare/0.2.141...0.2.142) (2026-02-19)
|
|
4
|
+
|
|
3
5
|
## [0.2.141](https://gitlab.finema.co/finema/finework/finework-frontend-layer/compare/0.2.140...0.2.141) (2026-02-19)
|
|
4
6
|
|
|
5
7
|
### Bug Fixes
|
|
@@ -31,47 +31,54 @@
|
|
|
31
31
|
v-else
|
|
32
32
|
:loading="notification.fetch.status.isLoading"
|
|
33
33
|
>
|
|
34
|
-
<div
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
34
|
+
<div
|
|
35
|
+
v-for="item in notification.fetch.items"
|
|
36
|
+
:key="item.id"
|
|
37
|
+
>
|
|
38
|
+
<Separator />
|
|
39
|
+
<NuxtLink
|
|
40
|
+
:to="getLink(item)"
|
|
41
|
+
:target="getLink(item) === '#' ? '_self' : '_blank'"
|
|
42
|
+
:class="['flex cursor-pointer items-start gap-2 rounded-lg p-4 hover:bg-gray-100']"
|
|
38
43
|
>
|
|
39
|
-
<
|
|
40
|
-
:to="getLink(item)"
|
|
41
|
-
:target="getLink(item) === '#' ? '_self' : '_blank'"
|
|
42
|
-
:class="['flex cursor-pointer items-start gap-2 rounded-lg p-4 hover:bg-gray-100']"
|
|
43
|
-
>
|
|
44
|
-
<!-- <Chip
|
|
44
|
+
<!-- <Chip
|
|
45
45
|
position="bottom-right"
|
|
46
46
|
size="3xl"
|
|
47
47
|
inset
|
|
48
48
|
:color="getNotificationColor(item)"
|
|
49
49
|
> -->
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
50
|
+
<div
|
|
51
|
+
v-if="item.actor?.avatar_url"
|
|
52
|
+
class="relative"
|
|
53
|
+
>
|
|
54
|
+
<Avatar
|
|
55
|
+
class="min-h-12 min-w-12"
|
|
56
|
+
:src="item.actor?.avatar_url"
|
|
57
|
+
:alt="item.actor?.display_name"
|
|
58
|
+
/>
|
|
59
|
+
<img
|
|
60
|
+
:src="getImage(item)!"
|
|
61
|
+
class="absolute -right-1 -bottom-1 w-5 rounded-full bg-white p-0.25"
|
|
62
|
+
/>
|
|
63
|
+
</div>
|
|
64
|
+
<img
|
|
65
|
+
v-else
|
|
66
|
+
:src="getImage(item)!"
|
|
67
|
+
class="h-12 min-h-12 w-12 min-w-12"
|
|
68
|
+
/>
|
|
69
|
+
<!-- </Chip> -->
|
|
70
|
+
|
|
71
|
+
<div class="flex flex-1 flex-col gap-0">
|
|
72
|
+
<p
|
|
73
|
+
class="text-gray line-clamp-2 text-sm"
|
|
74
|
+
v-html="getMessage(item)"
|
|
75
|
+
/>
|
|
76
|
+
<FormatTimeFromNow
|
|
77
|
+
class="text-xs font-medium whitespace-nowrap text-gray-600"
|
|
78
|
+
:value="item.sent_at"
|
|
79
|
+
/>
|
|
80
|
+
</div>
|
|
81
|
+
</NuxtLink>
|
|
75
82
|
</div>
|
|
76
83
|
</Loader>
|
|
77
84
|
</template>
|
package/package.json
CHANGED
package/public/admin/assets.png
DELETED
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/public/admin/recruit.png
DELETED
|
Binary file
|
|
Binary file
|
package/public/admin/request.png
DELETED
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/public/admin/todo.png
DELETED
|
Binary file
|