@finema/finework-layer 2.0.26 → 2.0.27
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 +6 -0
- package/app/composables/useAuth.ts +3 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [2.0.27](https://gitlab.finema.co/finema/finework/finework-frontend-layer/compare/2.0.26...2.0.27) (2026-08-16)
|
|
4
|
+
|
|
5
|
+
### Features
|
|
6
|
+
|
|
7
|
+
* add Loan module with corresponding label and logo ([506b4b0](https://gitlab.finema.co/finema/finework/finework-frontend-layer/commit/506b4b0f048642210e5eeb8da72c421d1c22a000))
|
|
8
|
+
|
|
3
9
|
## [2.0.26](https://gitlab.finema.co/finema/finework/finework-frontend-layer/compare/2.0.25...2.0.26) (2026-08-16)
|
|
4
10
|
|
|
5
11
|
### Features
|
|
@@ -130,6 +130,7 @@ const UserModuleLabel = {
|
|
|
130
130
|
[UserModule.LG]: 'งบค้ำประกัน',
|
|
131
131
|
[UserModule.EFACTORING]: 'E-Factoring',
|
|
132
132
|
[UserModule.RESOURCE]: 'Resource',
|
|
133
|
+
[UserModule.LOAN]: 'Loan',
|
|
133
134
|
[UserModule.TOR]: 'TOR',
|
|
134
135
|
[UserModule.SUPPORT]: 'Support',
|
|
135
136
|
[UserModule.PMO_SETUP]: 'PMO Setup',
|
|
@@ -156,6 +157,7 @@ const UserModuleLogo = {
|
|
|
156
157
|
[UserModule.LG]: '/admin/guarantee.png',
|
|
157
158
|
[UserModule.EFACTORING]: '/admin/efactoring.png',
|
|
158
159
|
[UserModule.RESOURCE]: '/admin/resource.svg',
|
|
160
|
+
[UserModule.LOAN]: '/admin/loan.svg',
|
|
159
161
|
[UserModule.TOR]: '/admin/tor.svg',
|
|
160
162
|
[UserModule.SUPPORT]: '/admin/support.svg',
|
|
161
163
|
[UserModule.PMO_SETUP]: '/admin/pmo_setup.png',
|
|
@@ -193,6 +195,7 @@ export interface IUserAccessLevel {
|
|
|
193
195
|
lg: Permission
|
|
194
196
|
efactoring: Permission
|
|
195
197
|
resource: Permission
|
|
198
|
+
loan: Permission
|
|
196
199
|
tor: Permission
|
|
197
200
|
support: Permission
|
|
198
201
|
pmo_setup: Permission
|