@finema/finework-layer 1.0.77 → 1.0.78
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/components/PortalApp.vue +1 -1
- package/app/constants/routes.ts +6 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [1.0.78](https://gitlab.finema.co/finema/finework/finework-frontend-layer/compare/1.0.77...1.0.78) (2026-06-12)
|
|
4
|
+
|
|
5
|
+
### Features
|
|
6
|
+
|
|
7
|
+
* add Company Directory to account menu and activate Loan module ([b508017](https://gitlab.finema.co/finema/finework/finework-frontend-layer/commit/b5080178bd259ebc2f93543816cbab3a15debe22))
|
|
8
|
+
|
|
3
9
|
## [1.0.77](https://gitlab.finema.co/finema/finework/finework-frontend-layer/compare/1.0.76...1.0.77) (2026-06-09)
|
|
4
10
|
|
|
5
11
|
## [1.0.76](https://gitlab.finema.co/finema/finework/finework-frontend-layer/compare/1.0.75...1.0.76) (2026-06-05)
|
package/app/constants/routes.ts
CHANGED
|
@@ -33,6 +33,11 @@ export const routes = {
|
|
|
33
33
|
to: '/account/my-team',
|
|
34
34
|
icon: 'ph:users-three',
|
|
35
35
|
},
|
|
36
|
+
companyDirectory: {
|
|
37
|
+
label: 'Company directory',
|
|
38
|
+
to: '/account/company-directory',
|
|
39
|
+
icon: 'ph:building-office',
|
|
40
|
+
},
|
|
36
41
|
},
|
|
37
42
|
|
|
38
43
|
announcements: {
|
|
@@ -232,5 +237,6 @@ export const routes = {
|
|
|
232
237
|
export const sidebarProfile = [
|
|
233
238
|
routes.account.profile,
|
|
234
239
|
routes.account.myTeam,
|
|
240
|
+
routes.account.companyDirectory,
|
|
235
241
|
routes.logout,
|
|
236
242
|
]
|