@finema/finework-layer 0.0.15 → 0.0.16

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.0.16](https://gitlab.finema.co/finema/finework/finework-frontend-layer/compare/0.0.15...0.0.16) (2025-10-14)
4
+
5
+ ### Bug Fixes
6
+
7
+ * **admin:** hide logo when sidebar is collapsed ([74e5dd2](https://gitlab.finema.co/finema/finework/finework-frontend-layer/commit/74e5dd2c8d1367bc7c5009f95498e83d86c7244c))
8
+
3
9
  ## [0.0.15](https://gitlab.finema.co/finema/finework/finework-frontend-layer/compare/0.0.14...0.0.15) (2025-10-14)
4
10
 
5
11
  ### Bug Fixes
@@ -6,13 +6,14 @@
6
6
  `]"
7
7
  >
8
8
  <div
9
- :class="['flex h-[72px] w-[260px] items-center pl-5 max-sm:pr-5', {
9
+ :class="['flex h-[72px] items-center max-sm:pr-5', {
10
10
  'justify-center': isCollapsed,
11
- 'justify-between': !isCollapsed,
11
+ 'w-[260px] justify-between pl-5': !isCollapsed,
12
12
  }]"
13
13
  >
14
14
  <NuxtLink :to="routes.home.to">
15
15
  <img
16
+ v-if="!isCollapsed"
16
17
  src="/logo-mini.png"
17
18
  alt="logo_mini_color"
18
19
  class="h-[27px]"
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@finema/finework-layer",
3
3
  "type": "module",
4
- "version": "0.0.15",
4
+ "version": "0.0.16",
5
5
  "main": "./nuxt.config.ts",
6
6
  "scripts": {
7
7
  "dev": "nuxi dev .playground -o",