@finema/finework-layer 2.0.38 → 2.0.40

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.40](https://gitlab.finema.co/finema/finework/finework-frontend-layer/compare/2.0.39...2.0.40) (2026-08-20)
4
+
5
+ ### Features
6
+
7
+ * 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))
8
+ * reduce admin layout bottom padding on xl screens ([4997dd2](https://gitlab.finema.co/finema/finework/finework-frontend-layer/commit/4997dd282f363527bc81c15e0b8e5d396a94c647))
9
+
10
+ ## [2.0.39](https://gitlab.finema.co/finema/finework/finework-frontend-layer/compare/2.0.38...2.0.39) (2026-08-20)
11
+
12
+ ### Features
13
+
14
+ * adjust admin layout padding for better spacing ([c1e7d78](https://gitlab.finema.co/finema/finework/finework-frontend-layer/commit/c1e7d784bd3db6fc78fb10b86ced197de54b1f4e))
15
+
3
16
  ## [2.0.38](https://gitlab.finema.co/finema/finework/finework-frontend-layer/compare/2.0.37...2.0.38) (2026-08-19)
4
17
 
5
18
  ### Features
@@ -19,16 +19,25 @@
19
19
  <h3 class="text-base font-semibold">
20
20
  Add bookmark
21
21
  </h3>
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>
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>
32
41
  </div>
33
42
 
34
43
  <div class="flex gap-3">
@@ -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 py-10 lg:px-8',
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.38",
4
+ "version": "2.0.40",
5
5
  "main": "./nuxt.config.ts",
6
6
  "scripts": {
7
7
  "dev": "nuxi dev .playground -o",