@finema/finework-layer 2.0.40 → 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,11 @@
|
|
|
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
|
+
|
|
3
9
|
## [2.0.40](https://gitlab.finema.co/finema/finework/finework-frontend-layer/compare/2.0.39...2.0.40) (2026-08-20)
|
|
4
10
|
|
|
5
11
|
### Features
|
|
@@ -19,25 +19,16 @@
|
|
|
19
19
|
<h3 class="text-base font-semibold">
|
|
20
20
|
Add bookmark
|
|
21
21
|
</h3>
|
|
22
|
-
<
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
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-
|
|
127
|
-
<
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
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 hover:underline"
|
|
121
|
+
@click="isOpen = false"
|
|
140
122
|
>
|
|
141
|
-
|
|
142
|
-
</
|
|
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>
|