@finema/finework-layer 0.2.49 → 0.2.50

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,7 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.2.50](https://gitlab.finema.co/finema/finework/finework-frontend-layer/compare/0.2.49...0.2.50) (2025-11-07)
4
+
3
5
  ## [0.2.49](https://gitlab.finema.co/finema/finework/finework-frontend-layer/compare/0.2.48...0.2.49) (2025-11-07)
4
6
 
5
7
  ### Bug Fixes
@@ -167,12 +167,17 @@ import { computed } from 'vue'
167
167
  import Sidebar from './Sidebar.vue'
168
168
  import Apps from '../Apps.vue'
169
169
 
170
- defineProps<{
171
- label: string
172
- sidebarItems: NavigationMenuItem[]
173
- isSidebarGroup?: boolean
174
- fullScreen?: boolean
175
- }>()
170
+ const props = withDefaults(
171
+ defineProps<{
172
+ label: string
173
+ sidebarItems: NavigationMenuItem[]
174
+ isSidebarGroup?: boolean
175
+ fullScreen?: boolean
176
+ }>(),
177
+ {
178
+ fullScreen: true,
179
+ },
180
+ )
176
181
 
177
182
  const app = useApp()
178
183
  const isShowSidebarMobile = ref(false)
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@finema/finework-layer",
3
3
  "type": "module",
4
- "version": "0.2.49",
4
+ "version": "0.2.50",
5
5
  "main": "./nuxt.config.ts",
6
6
  "scripts": {
7
7
  "dev": "nuxi dev .playground -o",