@finema/finework-layer 0.2.84 → 0.2.85

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
+ ## [0.2.85](https://gitlab.finema.co/finema/finework/finework-frontend-layer/compare/0.2.84...0.2.85) (2025-12-16)
4
+
5
+ ### Bug Fixes
6
+
7
+ * update PortalApp component to accept is-navbar prop and adjust layout ([c0e1fe9](https://gitlab.finema.co/finema/finework/finework-frontend-layer/commit/c0e1fe9a93e9f49a5d4220108210854615292f8d))
8
+
3
9
  ## [0.2.84](https://gitlab.finema.co/finema/finework/finework-frontend-layer/compare/0.2.83...0.2.84) (2025-12-16)
4
10
 
5
11
  ### Features
@@ -14,7 +14,7 @@
14
14
  class="text-gray-500"
15
15
  />
16
16
  <template #content>
17
- <PortalApp />
17
+ <PortalApp is-navbar />
18
18
  </template>
19
19
  </Slideover>
20
20
  </div>
@@ -1,5 +1,5 @@
1
1
  <template>
2
- <div class="max-h-[calc(100vh-80px)] overflow-auto bg-white p-5">
2
+ <div class="max-h-[calc(100vh-130px)] overflow-auto bg-white p-5">
3
3
  <div class="mb-5 flex items-center gap-2">
4
4
  <img
5
5
  src="/icon-finema.png"
@@ -9,14 +9,11 @@
9
9
  <div class="text-2xl font-bold">
10
10
  Finework Apps
11
11
  </div>
12
-
13
- <Button
14
- icon="i-heroicons-x-mark-20-solid"
15
- variant="ghost"
16
- class="ml-auto"
17
- />
18
12
  </div>
19
- <div class="grid gap-5 md:grid-cols-2 lg:grid-cols-3">
13
+ <div
14
+ class="grid gap-5"
15
+ :class="[isNavbar ?`md:grid-cols-2 xl:grid-cols-4` : `md:grid-cols-2 xl:grid-cols-3`]"
16
+ >
20
17
  <div
21
18
  v-if="managementApps.length > 0"
22
19
  class="space-y-6"
@@ -125,6 +122,10 @@
125
122
  </template>
126
123
 
127
124
  <script lang="ts" setup>
125
+ defineProps<{
126
+ isNavbar?: boolean
127
+ }>()
128
+
128
129
  const auth = useAuth()
129
130
  const managementApps = computed(() => [
130
131
  ...(auth.hasPermission(
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@finema/finework-layer",
3
3
  "type": "module",
4
- "version": "0.2.84",
4
+ "version": "0.2.85",
5
5
  "main": "./nuxt.config.ts",
6
6
  "scripts": {
7
7
  "dev": "nuxi dev .playground -o",