@finema/finework-layer 0.2.114 → 0.2.116
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 +8 -0
- package/app/components/PortalApp.vue +4 -2
- package/bun.lock +463 -89
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.2.116](https://gitlab.finema.co/finema/finework/finework-frontend-layer/compare/0.2.115...0.2.116) (2026-01-28)
|
|
4
|
+
|
|
5
|
+
## [0.2.115](https://gitlab.finema.co/finema/finework/finework-frontend-layer/compare/0.2.114...0.2.115) (2026-01-27)
|
|
6
|
+
|
|
7
|
+
### Bug Fixes
|
|
8
|
+
|
|
9
|
+
* adjust Card component UI binding for better responsiveness in PortalApp ([ab7eba4](https://gitlab.finema.co/finema/finework/finework-frontend-layer/commit/ab7eba42446ef9301a4da7d99eb5d7f319cfe584))
|
|
10
|
+
|
|
3
11
|
## [0.2.114](https://gitlab.finema.co/finema/finework/finework-frontend-layer/compare/0.2.113...0.2.114) (2026-01-26)
|
|
4
12
|
|
|
5
13
|
### 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
|