@finema/finework-layer 0.2.118 → 0.2.120

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
+ ## [0.2.120](https://gitlab.finema.co/finema/finework/finework-frontend-layer/compare/0.2.119...0.2.120) (2026-02-02)
4
+
5
+ ### Bug Fixes
6
+
7
+ * update condition to include dailyApps in PortalApp component ([fd932dd](https://gitlab.finema.co/finema/finework/finework-frontend-layer/commit/fd932ddba3a8ea1133cd55b8daf9c69458cd02f5))
8
+
9
+ ## [0.2.119](https://gitlab.finema.co/finema/finework/finework-frontend-layer/compare/0.2.118...0.2.119) (2026-01-29)
10
+
11
+ ### Bug Fixes
12
+
13
+ * enhance TODO link handling for various action types in notifications ([b0a79e8](https://gitlab.finema.co/finema/finework/finework-frontend-layer/commit/b0a79e8cd1f71a7e45ebbfe4f1d2a986f5343970))
14
+
3
15
  ## [0.2.118](https://gitlab.finema.co/finema/finework/finework-frontend-layer/compare/0.2.117...0.2.118) (2026-01-29)
4
16
 
5
17
  ### Bug Fixes
@@ -109,10 +109,15 @@ const getLink = (item: INotificationItem) => {
109
109
  return `/pmo/projects/${item.source_id}`
110
110
  } else if (item.source_type === 'NEWSLETTER') {
111
111
  return `/announcement/${item.source_id}`
112
- } else if (item.source_type === 'TODO') {
113
- return `/todo/cards/${item.data?.todo_slug}`
112
+ } else if (item.source_type === 'TODO' && item.action_type === 'TODO_ASSIGN_CARD') {
113
+ return `/todo/boards/${item.data?.todo_board_slug}/cards/${item.data?.todo_slug}`
114
+ } else if (item.source_type === 'TODO' && item.action_type === 'TODO_ASSIGN_BOARD') {
115
+ return `/todo/boards/${item.data?.todo_board_slug}`
116
+ } else if (item.source_type === 'TODO' && (item.action_type === 'TODO_REMOVE_CARD' || item.action_type === 'TODO_REMOVE_BOARD')) {
117
+ return `/todo/cards`
114
118
  }
115
119
 
120
+ // todo/boards/MEE/cards/MEE-1
116
121
  return '#'
117
122
  }
118
123
 
@@ -1,6 +1,6 @@
1
1
  <template>
2
2
  <Card
3
- v-if="managementApps.length > 0 || financeApps.length > 0 || peopleApps.length > 0 || legalApps.length > 0"
3
+ v-if="dailyApps.length > 0 || managementApps.length > 0 || financeApps.length > 0 || peopleApps.length > 0 || legalApps.length > 0"
4
4
  :ui="{
5
5
  body: isNavbar ? 'max-h-[calc(100vh-95px)] md:max-h-[calc(100vh-115px)] overflow-auto' : 'h-full overflow-auto',
6
6
  }"
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@finema/finework-layer",
3
3
  "type": "module",
4
- "version": "0.2.118",
4
+ "version": "0.2.120",
5
5
  "main": "./nuxt.config.ts",
6
6
  "scripts": {
7
7
  "dev": "nuxi dev .playground -o",