@finema/finework-layer 2.0.55 → 2.0.57
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.57](https://gitlab.finema.co/finema/internal/finework/compare/2.0.56...2.0.57) (2026-09-04)
|
|
4
|
+
|
|
5
|
+
### Bug Fixes
|
|
6
|
+
|
|
7
|
+
* leadin ([dd2f53a](https://gitlab.finema.co/finema/internal/finework/commit/dd2f53affe1bda4c0cdf44c06238bb638b57cda7))
|
|
8
|
+
|
|
9
|
+
## [2.0.56](https://gitlab.finema.co/finema/internal/finework/compare/2.0.55...2.0.56) (2026-08-31)
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* size portal app ([3328865](https://gitlab.finema.co/finema/internal/finework/commit/33288653717dc49d9a9d1abccf758eec33b9f6a8))
|
|
14
|
+
|
|
3
15
|
## [2.0.55](https://gitlab.finema.co/finema/internal/finework/compare/2.0.54...2.0.55) (2026-08-31)
|
|
4
16
|
|
|
5
17
|
### Bug Fixes
|
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
: 'h-full overflow-auto p-4!',
|
|
8
8
|
}"
|
|
9
9
|
>
|
|
10
|
-
<div class="space-y-
|
|
10
|
+
<div class="space-y-3 bg-white">
|
|
11
11
|
<Input
|
|
12
12
|
v-model="search"
|
|
13
13
|
icon="ph:magnifying-glass"
|
|
@@ -17,9 +17,9 @@
|
|
|
17
17
|
/>
|
|
18
18
|
|
|
19
19
|
<div
|
|
20
|
-
v-for="category in filteredCategories"
|
|
20
|
+
v-for="(category, index) in filteredCategories"
|
|
21
21
|
:key="category.key"
|
|
22
|
-
class="space-y-
|
|
22
|
+
class="space-y-0.5"
|
|
23
23
|
>
|
|
24
24
|
<div class="text-base font-bold">
|
|
25
25
|
{{ category.title }}
|
|
@@ -53,7 +53,7 @@
|
|
|
53
53
|
กำลังพัฒนา
|
|
54
54
|
</span>
|
|
55
55
|
</div>
|
|
56
|
-
<span class="line-clamp-2 text-sm font-semibold">
|
|
56
|
+
<span class="line-clamp-2 w-24 text-sm font-semibold">
|
|
57
57
|
{{ app.label }}
|
|
58
58
|
</span>
|
|
59
59
|
</component>
|
|
@@ -69,7 +69,7 @@
|
|
|
69
69
|
v-for="app in category.apps"
|
|
70
70
|
:key="app.name"
|
|
71
71
|
:to="linkTo(app)"
|
|
72
|
-
class="flex items-start gap-3
|
|
72
|
+
class="flex items-start gap-3 px-1 py-3 transition-colors last:border-0"
|
|
73
73
|
:class="isDeveloping(app) ? 'cursor-not-allowed opacity-60' : 'hover:bg-gray-50'"
|
|
74
74
|
@click="onAppClick(app)"
|
|
75
75
|
>
|
|
@@ -94,6 +94,10 @@
|
|
|
94
94
|
</div>
|
|
95
95
|
</component>
|
|
96
96
|
</div>
|
|
97
|
+
<Separator
|
|
98
|
+
v-if="index < filteredCategories.length - 1"
|
|
99
|
+
class="my-3"
|
|
100
|
+
/>
|
|
97
101
|
</div>
|
|
98
102
|
|
|
99
103
|
<Empty
|
|
@@ -135,10 +135,10 @@ export const UserModuleLabel = {
|
|
|
135
135
|
[UserModule.LOAN]: 'Loan',
|
|
136
136
|
[UserModule.TOR]: 'Presales Tools',
|
|
137
137
|
[UserModule.SUPPORT]: 'Support',
|
|
138
|
-
[UserModule.PMO_SETUP]: '
|
|
139
|
-
[UserModule.PMO_PRESALE_BIDDING]: '
|
|
140
|
-
[UserModule.PMO_DELIVERY]: '
|
|
141
|
-
[UserModule.PMO_WARRANTY]: '
|
|
138
|
+
[UserModule.PMO_SETUP]: 'Lead In',
|
|
139
|
+
[UserModule.PMO_PRESALE_BIDDING]: 'Presale & Bidding',
|
|
140
|
+
[UserModule.PMO_DELIVERY]: 'Delivery',
|
|
141
|
+
[UserModule.PMO_WARRANTY]: 'Warranty',
|
|
142
142
|
[UserModule.RESOURCE_ALLOCATION]: 'Resource Allocation',
|
|
143
143
|
[UserModule.DOCUMENT]: 'Document',
|
|
144
144
|
}
|
package/app/constants/routes.ts
CHANGED