@finema/finework-layer 1.0.77 → 1.0.79

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,13 @@
1
1
  # Changelog
2
2
 
3
+ ## [1.0.79](https://gitlab.finema.co/finema/finework/finework-frontend-layer/compare/1.0.78...1.0.79) (2026-06-16)
4
+
5
+ ## [1.0.78](https://gitlab.finema.co/finema/finework/finework-frontend-layer/compare/1.0.77...1.0.78) (2026-06-12)
6
+
7
+ ### Features
8
+
9
+ * add Company Directory to account menu and activate Loan module ([b508017](https://gitlab.finema.co/finema/finework/finework-frontend-layer/commit/b5080178bd259ebc2f93543816cbab3a15debe22))
10
+
3
11
  ## [1.0.77](https://gitlab.finema.co/finema/finework/finework-frontend-layer/compare/1.0.76...1.0.77) (2026-06-09)
4
12
 
5
13
  ## [1.0.76](https://gitlab.finema.co/finema/finework/finework-frontend-layer/compare/1.0.75...1.0.76) (2026-06-05)
@@ -169,7 +169,7 @@
169
169
  size="xl"
170
170
  :items="userMenuItems"
171
171
  :ui="{
172
- content: 'w-48',
172
+ content: 'w-52',
173
173
  }"
174
174
  >
175
175
  <Button
@@ -117,7 +117,7 @@
117
117
  side: 'bottom',
118
118
  }"
119
119
  :ui="{
120
- content: 'w-48',
120
+ content: 'w-52',
121
121
  }"
122
122
  >
123
123
  <div class="relative flex cursor-pointer items-center gap-2">
@@ -26,7 +26,7 @@
26
26
  side: 'bottom',
27
27
  }"
28
28
  :ui="{
29
- content: 'w-48',
29
+ content: 'w-52',
30
30
  }"
31
31
  >
32
32
  <div class="relative flex cursor-pointer items-center gap-2">
@@ -154,11 +154,13 @@ const getLink = (item: INotificationItem) => {
154
154
  {
155
155
  switch (item.action_type) {
156
156
  case 'EVALUATION_GENERAL_REMINDER':
157
- return `/evaluation/evaluator/${item.data?.evaluation_general_id}`
157
+ return `/evaluation/evaluator/${item.data?.evaluation_id}`
158
158
 
159
159
  case 'EVALUATION_PROBATION_REMINDER':
160
- return `/evaluation/probation/${item.data?.evaluation_general_id}`
160
+ return `/evaluation/probation/${item.data?.evaluation_id}`
161
161
 
162
+ case 'EVALUATION_ANNUAL_REMINDER':
163
+ return `/evaluation/annuals/${item.data?.evaluation_id}/submission`
162
164
  default:
163
165
  return '#'
164
166
  }
@@ -441,7 +441,7 @@ const financeApps = computed(() => [
441
441
  label: 'Loan',
442
442
  description: 'รายการกู้เงินจากธนาคาร',
443
443
  to: routes.loan.list.lists.to,
444
- status: StatusPortal.DEVELOPING,
444
+ status: StatusPortal.ACTIVE,
445
445
  },
446
446
  ]
447
447
  : []),
@@ -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
  ]
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@finema/finework-layer",
3
3
  "type": "module",
4
- "version": "1.0.77",
4
+ "version": "1.0.79",
5
5
  "main": "./nuxt.config.ts",
6
6
  "scripts": {
7
7
  "dev": "nuxi dev .playground -o",