@finema/finework-layer 0.2.113 → 0.2.115
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
|
+
## [0.2.115](https://gitlab.finema.co/finema/finework/finework-frontend-layer/compare/0.2.114...0.2.115) (2026-01-27)
|
|
4
|
+
|
|
5
|
+
### Bug Fixes
|
|
6
|
+
|
|
7
|
+
* adjust Card component UI binding for better responsiveness in PortalApp ([ab7eba4](https://gitlab.finema.co/finema/finework/finework-frontend-layer/commit/ab7eba42446ef9301a4da7d99eb5d7f319cfe584))
|
|
8
|
+
|
|
9
|
+
## [0.2.114](https://gitlab.finema.co/finema/finework/finework-frontend-layer/compare/0.2.113...0.2.114) (2026-01-26)
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* update v-model binding in Slideover component and correct emit type definition in PortalApp ([1f90551](https://gitlab.finema.co/finema/finework/finework-frontend-layer/commit/1f90551d82bee0fd816936c59169e40667aac6c5))
|
|
14
|
+
|
|
3
15
|
## [0.2.113](https://gitlab.finema.co/finema/finework/finework-frontend-layer/compare/0.2.112...0.2.113) (2026-01-26)
|
|
4
16
|
|
|
5
17
|
### Bug Fixes
|
|
@@ -1,10 +1,12 @@
|
|
|
1
1
|
<template>
|
|
2
2
|
<Card
|
|
3
3
|
v-if="managementApps.length > 0 || financeApps.length > 0 || peopleApps.length > 0 || legalApps.length > 0"
|
|
4
|
+
:ui="{
|
|
5
|
+
body: isNavbar ? 'max-h-[calc(100vh-95px)] md:max-h-[calc(100vh-115px)] overflow-auto' : 'h-full overflow-auto',
|
|
6
|
+
}"
|
|
4
7
|
>
|
|
5
8
|
<div
|
|
6
|
-
class="
|
|
7
|
-
:class="[isNavbar ? 'max-h-[calc(100vh-130px)]' : 'h-full']"
|
|
9
|
+
class="bg-white"
|
|
8
10
|
>
|
|
9
11
|
<div class="mb-5 flex items-center gap-2">
|
|
10
12
|
<img
|
|
@@ -252,7 +254,7 @@
|
|
|
252
254
|
import { resolveComponent } from 'vue'
|
|
253
255
|
|
|
254
256
|
const emit = defineEmits<{
|
|
255
|
-
close:
|
|
257
|
+
(e: 'close'): void
|
|
256
258
|
}>()
|
|
257
259
|
|
|
258
260
|
const props = defineProps<{
|