@finema/finework-layer 1.0.60 → 1.0.62
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
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [1.0.62](https://gitlab.finema.co/finema/finework/finework-frontend-layer/compare/1.0.61...1.0.62) (2026-05-19)
|
|
4
|
+
|
|
5
|
+
### Features
|
|
6
|
+
|
|
7
|
+
* adjust sidebar layout for collapsed state ([b9e189a](https://gitlab.finema.co/finema/finework/finework-frontend-layer/commit/b9e189a0848c8a720dc9e37b19812e9352420028))
|
|
8
|
+
|
|
9
|
+
## [1.0.61](https://gitlab.finema.co/finema/finework/finework-frontend-layer/compare/1.0.60...1.0.61) (2026-05-19)
|
|
10
|
+
|
|
11
|
+
### Features
|
|
12
|
+
|
|
13
|
+
* add navigation link for REQUEST_WAITING_REVIEW notification type ([91d1091](https://gitlab.finema.co/finema/finework/finework-frontend-layer/commit/91d1091e5b3311ec23c9a50ed817f94b13e4d194))
|
|
14
|
+
|
|
3
15
|
## [1.0.60](https://gitlab.finema.co/finema/finework/finework-frontend-layer/compare/1.0.59...1.0.60) (2026-05-19)
|
|
4
16
|
|
|
5
17
|
### Features
|
|
@@ -29,6 +29,7 @@
|
|
|
29
29
|
</div>
|
|
30
30
|
<div
|
|
31
31
|
class="bg-primary flex items-center justify-between px-7 py-4 font-bold text-white"
|
|
32
|
+
:class="isCollapsed ?'justify-center' : 'justify-between'"
|
|
32
33
|
>
|
|
33
34
|
{{ isCollapsed ? "" : label }}
|
|
34
35
|
|
|
@@ -78,6 +79,7 @@
|
|
|
78
79
|
'cursor-pointer text-sm font-bold text-gray-500 px-[10px] rounded-lg gap-3',
|
|
79
80
|
'hover:text-primary',
|
|
80
81
|
'data-active:before:bg-[#F9FAFB] data-active:before:rounded-lg data-active:text-primary font-semibold',
|
|
82
|
+
'justify-center',
|
|
81
83
|
],
|
|
82
84
|
linkLabel: '!text-[#344054] font-bold',
|
|
83
85
|
linkLeadingIcon:
|
|
@@ -114,6 +116,7 @@
|
|
|
114
116
|
'cursor-pointer text-sm font-bold text-gray-500 px-[10px] rounded-lg gap-3',
|
|
115
117
|
'hover:text-primary',
|
|
116
118
|
'data-active:before:bg-[#F9FAFB] data-active:before:rounded-lg data-active:text-primary font-semibold',
|
|
119
|
+
'justify-center',
|
|
117
120
|
],
|
|
118
121
|
linkLabel: '!text-[#344054] font-bold',
|
|
119
122
|
linkLeadingIcon:
|
|
@@ -143,7 +143,8 @@ const getLink = (item: INotificationItem) => {
|
|
|
143
143
|
case 'REQUEST_APPROVED':
|
|
144
144
|
case 'REQUEST_REJECTED':
|
|
145
145
|
return `/request/${item.data?.request_slug}`
|
|
146
|
-
|
|
146
|
+
case 'REQUEST_WAITING_REVIEW':
|
|
147
|
+
return `/request-admin/request/${item.data?.request_slug}`
|
|
147
148
|
default:
|
|
148
149
|
return '#'
|
|
149
150
|
}
|