@finema/finework-layer 1.0.42 → 1.0.43

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,11 @@
1
1
  # Changelog
2
2
 
3
+ ## [1.0.43](https://gitlab.finema.co/finema/finework/finework-frontend-layer/compare/1.0.42...1.0.43) (2026-04-30)
4
+
5
+ ### Features
6
+
7
+ * enhance evaluation link handling with action type differentiation ([d7ef2bb](https://gitlab.finema.co/finema/finework/finework-frontend-layer/commit/d7ef2bb6698eab36202155dd6b1c579fe7e70b37))
8
+
3
9
  ## [1.0.42](https://gitlab.finema.co/finema/finework/finework-frontend-layer/compare/1.0.41...1.0.42) (2026-04-29)
4
10
 
5
11
  ### Features
package/app/app.config.ts CHANGED
@@ -185,5 +185,8 @@ export default defineAppConfig({
185
185
  },
186
186
  },
187
187
  },
188
+ uploadFileDropzone: {
189
+ actionIconClass: 'text-[#B42318]! hover:text-[##FDA29B]!',
190
+ },
188
191
  },
189
192
  })
@@ -151,7 +151,16 @@ const getLink = (item: INotificationItem) => {
151
151
 
152
152
  case 'EVALUATION':
153
153
  {
154
- return `evaluation/evaluator/${item.data?.evaluator_id}`
154
+ switch (item.action_type) {
155
+ case 'EVALUATION_GENERAL_REMINDER':
156
+ return `/evaluation/evaluator/${item.data?.evaluation_general_id}`
157
+
158
+ case 'EVALUATION_PROBATION_REMINDER':
159
+ return `/evaluation/probation/${item.data?.evaluation_probation_id}`
160
+
161
+ default:
162
+ return '#'
163
+ }
155
164
  }
156
165
 
157
166
  default:
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@finema/finework-layer",
3
3
  "type": "module",
4
- "version": "1.0.42",
4
+ "version": "1.0.43",
5
5
  "main": "./nuxt.config.ts",
6
6
  "scripts": {
7
7
  "dev": "nuxi dev .playground -o",