@finema/finework-layer 2.0.39 → 2.0.41

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,18 @@
1
1
  # Changelog
2
2
 
3
+ ## [2.0.41](https://gitlab.finema.co/finema/finework/finework-frontend-layer/compare/2.0.40...2.0.41) (2026-08-20)
4
+
5
+ ### Features
6
+
7
+ * reorganize bookmark modal layout and update button text ([1270ece](https://gitlab.finema.co/finema/finework/finework-frontend-layer/commit/1270ece01bbc6d8d2ab1146952995affa1e82db4))
8
+
9
+ ## [2.0.40](https://gitlab.finema.co/finema/finework/finework-frontend-layer/compare/2.0.39...2.0.40) (2026-08-20)
10
+
11
+ ### Features
12
+
13
+ * add "View all" link to bookmark modal and increase admin layout bottom padding ([aed5f5a](https://gitlab.finema.co/finema/finework/finework-frontend-layer/commit/aed5f5a78b269d07f1229fbf38f1ae316a2061b9))
14
+ * reduce admin layout bottom padding on xl screens ([4997dd2](https://gitlab.finema.co/finema/finework/finework-frontend-layer/commit/4997dd282f363527bc81c15e0b8e5d396a94c647))
15
+
3
16
  ## [2.0.39](https://gitlab.finema.co/finema/finework/finework-frontend-layer/compare/2.0.38...2.0.39) (2026-08-20)
4
17
 
5
18
  ### Features
@@ -114,23 +114,32 @@
114
114
  </div>
115
115
  </div>
116
116
 
117
- <div class="mt-4 flex justify-end gap-2">
118
- <Button
119
- v-if="isBookmarked"
120
- variant="outline"
121
- color="neutral"
122
- :loading="bookmarks.delete.status.isLoading"
123
- @click="onRemove"
124
- >
125
- Remove
126
- </Button>
127
- <Button
128
- :loading="bookmarks.add.status.isLoading || bookmarks.update.status.isLoading"
129
- :disabled="!url"
130
- @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 hover:underline"
121
+ @click="isOpen = false"
131
122
  >
132
- Done
133
- </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>
134
143
  </div>
135
144
  </Card>
136
145
  </template>
@@ -146,7 +146,7 @@
146
146
  <div class="w-full bg-gray-50 pt-[64px] lg:pt-[72px]">
147
147
  <main
148
148
  :class="[
149
- 'mx-auto min-h-full flex-1 px-6 pt-10 pb-16 lg:px-8 xl:pb-20',
149
+ 'mx-auto min-h-full flex-1 px-6 pt-10 pb-16 lg:px-8 xl:pb-21',
150
150
  fullScreen ? 'w-full 2xl:max-w-[90%]' : 'max-w-7xl 2xl:max-w-[70%]',
151
151
  ]"
152
152
  >
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@finema/finework-layer",
3
3
  "type": "module",
4
- "version": "2.0.39",
4
+ "version": "2.0.41",
5
5
  "main": "./nuxt.config.ts",
6
6
  "scripts": {
7
7
  "dev": "nuxi dev .playground -o",