@finema/finework-layer 1.0.15 → 1.0.17
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 +13 -0
- package/app/components/Layout/User/index.vue +1 -1
- package/app/components/PortalApp.vue +10 -10
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,18 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [1.0.17](https://gitlab.finema.co/finema/finework/finework-frontend-layer/compare/1.0.16...1.0.17) (2026-03-23)
|
|
4
|
+
|
|
5
|
+
### Bug Fixes
|
|
6
|
+
|
|
7
|
+
* enhance grid layout for better responsiveness in PortalApp ([37aedf0](https://gitlab.finema.co/finema/finework/finework-frontend-layer/commit/37aedf0724f7a2a158f8723c9f22a6c60f7bcbe2))
|
|
8
|
+
* update grid layout for improved responsiveness in PortalApp ([566663f](https://gitlab.finema.co/finema/finework/finework-frontend-layer/commit/566663f07f05b9a3ee1ccb0d0744590e0a9148a9))
|
|
9
|
+
|
|
10
|
+
## [1.0.16](https://gitlab.finema.co/finema/finework/finework-frontend-layer/compare/1.0.15...1.0.16) (2026-03-23)
|
|
11
|
+
|
|
12
|
+
### Bug Fixes
|
|
13
|
+
|
|
14
|
+
* adjust main container max-width for improved layout ([7a0f2ac](https://gitlab.finema.co/finema/finework/finework-frontend-layer/commit/7a0f2acdd6f5770d1872a7f6ea71ed39eb1a2997))
|
|
15
|
+
|
|
3
16
|
## [1.0.15](https://gitlab.finema.co/finema/finework/finework-frontend-layer/compare/1.0.14...1.0.15) (2026-03-18)
|
|
4
17
|
|
|
5
18
|
### Bug Fixes
|
|
@@ -54,7 +54,7 @@
|
|
|
54
54
|
</div>
|
|
55
55
|
</div>
|
|
56
56
|
</nav>
|
|
57
|
-
<main class="mx-auto w-full
|
|
57
|
+
<main class="mx-auto w-full flex-1 px-4 pb-20 md:px-10">
|
|
58
58
|
<div
|
|
59
59
|
v-if="app.pageMeta.title"
|
|
60
60
|
class="mb-4 flex flex-col justify-between gap-1 md:mb-6 md:gap-4 lg:flex-row lg:items-center"
|
|
@@ -28,8 +28,8 @@
|
|
|
28
28
|
Daily work Apps
|
|
29
29
|
</div>
|
|
30
30
|
<div
|
|
31
|
-
class="grid
|
|
32
|
-
:class="[isNavbar ?`md:grid-cols-2 xl:grid-cols-4` : `
|
|
31
|
+
class="grid"
|
|
32
|
+
:class="[isNavbar ?`gap-5 md:grid-cols-2 xl:grid-cols-4` : `grid-cols-1 gap-2`]"
|
|
33
33
|
>
|
|
34
34
|
<component
|
|
35
35
|
:is="app.status === StatusPortal.DEVELOPING ? 'div' : NuxtLink"
|
|
@@ -72,8 +72,8 @@
|
|
|
72
72
|
Management
|
|
73
73
|
</div>
|
|
74
74
|
<div
|
|
75
|
-
class="grid
|
|
76
|
-
:class="[isNavbar ?`md:grid-cols-2 xl:grid-cols-4` : `
|
|
75
|
+
class="grid"
|
|
76
|
+
:class="[isNavbar ?`gap-5 md:grid-cols-2 xl:grid-cols-4` : `grid-cols-1 gap-2`]"
|
|
77
77
|
>
|
|
78
78
|
<component
|
|
79
79
|
:is="app.status === StatusPortal.DEVELOPING ? 'div' : NuxtLink"
|
|
@@ -117,8 +117,8 @@
|
|
|
117
117
|
Finance
|
|
118
118
|
</div>
|
|
119
119
|
<div
|
|
120
|
-
class="grid
|
|
121
|
-
:class="[isNavbar ?`md:grid-cols-2 xl:grid-cols-4` : `
|
|
120
|
+
class="grid"
|
|
121
|
+
:class="[isNavbar ?`gap-5 md:grid-cols-2 xl:grid-cols-4` : `grid-cols-1 gap-2`]"
|
|
122
122
|
>
|
|
123
123
|
<component
|
|
124
124
|
:is="app.status === StatusPortal.DEVELOPING ? 'div' : NuxtLink"
|
|
@@ -164,8 +164,8 @@
|
|
|
164
164
|
People
|
|
165
165
|
</div>
|
|
166
166
|
<div
|
|
167
|
-
class="grid
|
|
168
|
-
:class="[isNavbar ?`md:grid-cols-2 xl:grid-cols-4` : `
|
|
167
|
+
class="grid"
|
|
168
|
+
:class="[isNavbar ?`gap-5 md:grid-cols-2 xl:grid-cols-4` : `grid-cols-1 gap-2`]"
|
|
169
169
|
>
|
|
170
170
|
<component
|
|
171
171
|
:is="app.status === StatusPortal.DEVELOPING ? 'div' : NuxtLink"
|
|
@@ -209,8 +209,8 @@
|
|
|
209
209
|
Legal
|
|
210
210
|
</div>
|
|
211
211
|
<div
|
|
212
|
-
class="grid
|
|
213
|
-
:class="[isNavbar ?`md:grid-cols-2 xl:grid-cols-4` : `
|
|
212
|
+
class="grid"
|
|
213
|
+
:class="[isNavbar ?`gap-5 md:grid-cols-2 xl:grid-cols-4` : `grid-cols-1 gap-2`]"
|
|
214
214
|
>
|
|
215
215
|
<component
|
|
216
216
|
:is="app.status === StatusPortal.DEVELOPING ? 'div' : NuxtLink"
|