@finema/finework-layer 2.0.40 → 2.0.42

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
+ ## [2.0.42](https://gitlab.finema.co/finema/finework/finework-frontend-layer/compare/2.0.41...2.0.42) (2026-08-20)
4
+
5
+ ### Features
6
+
7
+ * update bookmark link styling and add feedback ticket notification routing ([48b6192](https://gitlab.finema.co/finema/finework/finework-frontend-layer/commit/48b6192c44ad19e58d83956a6a5f7d5d27a8992b))
8
+
9
+ ## [2.0.41](https://gitlab.finema.co/finema/finework/finework-frontend-layer/compare/2.0.40...2.0.41) (2026-08-20)
10
+
11
+ ### Features
12
+
13
+ * reorganize bookmark modal layout and update button text ([1270ece](https://gitlab.finema.co/finema/finework/finework-frontend-layer/commit/1270ece01bbc6d8d2ab1146952995affa1e82db4))
14
+
3
15
  ## [2.0.40](https://gitlab.finema.co/finema/finework/finework-frontend-layer/compare/2.0.39...2.0.40) (2026-08-20)
4
16
 
5
17
  ### Features
@@ -19,25 +19,16 @@
19
19
  <h3 class="text-base font-semibold">
20
20
  Add bookmark
21
21
  </h3>
22
- <div class="flex items-center gap-3">
23
- <NuxtLink
24
- :to="routes.account.bookmarks.to"
25
- class="text-primary text-sm underline"
26
- @click="isOpen = false"
27
- >
28
- View all
29
- </NuxtLink>
30
- <button
31
- type="button"
32
- class="flex size-7 cursor-pointer items-center justify-center rounded-full text-gray-400 hover:bg-gray-100"
33
- @click="isOpen = false"
34
- >
35
- <Icon
36
- name="ph:x"
37
- class="size-4"
38
- />
39
- </button>
40
- </div>
22
+ <button
23
+ type="button"
24
+ class="flex size-7 cursor-pointer items-center justify-center rounded-full text-gray-400 hover:bg-gray-100"
25
+ @click="isOpen = false"
26
+ >
27
+ <Icon
28
+ name="ph:x"
29
+ class="size-4"
30
+ />
31
+ </button>
41
32
  </div>
42
33
 
43
34
  <div class="flex gap-3">
@@ -123,23 +114,32 @@
123
114
  </div>
124
115
  </div>
125
116
 
126
- <div class="mt-4 flex justify-end gap-2">
127
- <Button
128
- v-if="isBookmarked"
129
- variant="outline"
130
- color="neutral"
131
- :loading="bookmarks.delete.status.isLoading"
132
- @click="onRemove"
133
- >
134
- Remove
135
- </Button>
136
- <Button
137
- :loading="bookmarks.add.status.isLoading || bookmarks.update.status.isLoading"
138
- :disabled="!url"
139
- @click="onSave"
117
+ <div class="mt-4 flex items-center justify-between gap-2">
118
+ <NuxtLink
119
+ :to="routes.account.bookmarks.to"
120
+ class="text-primary text-sm font-bold underline"
121
+ @click="isOpen = false"
140
122
  >
141
- Done
142
- </Button>
123
+ View all bookmarks
124
+ </NuxtLink>
125
+ <div class="flex gap-2">
126
+ <Button
127
+ v-if="isBookmarked"
128
+ variant="outline"
129
+ color="neutral"
130
+ :loading="bookmarks.delete.status.isLoading"
131
+ @click="onRemove"
132
+ >
133
+ Remove
134
+ </Button>
135
+ <Button
136
+ :loading="bookmarks.add.status.isLoading || bookmarks.update.status.isLoading"
137
+ :disabled="!url"
138
+ @click="onSave"
139
+ >
140
+ Save
141
+ </Button>
142
+ </div>
143
143
  </div>
144
144
  </Card>
145
145
  </template>
@@ -214,6 +214,18 @@ const getLink = (item: INotificationItem) => {
214
214
  }
215
215
  }
216
216
 
217
+ case 'SETTING_FEEDBACK_TICKET':
218
+ {
219
+ switch (item.action_type) {
220
+ case 'FEEDBACK_TICKET_RESOLVED':
221
+ case 'FEEDBACK_TICKET_CLOSED':
222
+ return `/feedback/tickets/${item.source_id}`
223
+
224
+ default:
225
+ return '#'
226
+ }
227
+ }
228
+
217
229
  default:
218
230
  return '#'
219
231
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@finema/finework-layer",
3
3
  "type": "module",
4
- "version": "2.0.40",
4
+ "version": "2.0.42",
5
5
  "main": "./nuxt.config.ts",
6
6
  "scripts": {
7
7
  "dev": "nuxi dev .playground -o",