@finema/finework-layer 1.0.16 → 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 CHANGED
@@ -1,5 +1,12 @@
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
+
3
10
  ## [1.0.16](https://gitlab.finema.co/finema/finework/finework-frontend-layer/compare/1.0.15...1.0.16) (2026-03-23)
4
11
 
5
12
  ### Bug Fixes
@@ -28,8 +28,8 @@
28
28
  Daily work Apps
29
29
  </div>
30
30
  <div
31
- class="grid gap-5"
32
- :class="[isNavbar ?`md:grid-cols-2 xl:grid-cols-4` : `md:grid-cols-2 xl:grid-cols-3`]"
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 gap-5"
76
- :class="[isNavbar ?`md:grid-cols-2 xl:grid-cols-4` : `md:grid-cols-2 xl:grid-cols-3`]"
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 gap-5"
121
- :class="[isNavbar ?`md:grid-cols-2 xl:grid-cols-4` : `md:grid-cols-2 xl:grid-cols-3`]"
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 gap-5"
168
- :class="[isNavbar ?`md:grid-cols-2 xl:grid-cols-4` : `md:grid-cols-2 xl:grid-cols-3`]"
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 gap-5"
213
- :class="[isNavbar ?`md:grid-cols-2 xl:grid-cols-4` : `md:grid-cols-2 xl:grid-cols-3`]"
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"
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@finema/finework-layer",
3
3
  "type": "module",
4
- "version": "1.0.16",
4
+ "version": "1.0.17",
5
5
  "main": "./nuxt.config.ts",
6
6
  "scripts": {
7
7
  "dev": "nuxi dev .playground -o",