@finema/finework-layer 0.1.2 → 0.1.4

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.
@@ -1,6 +1,8 @@
1
1
  <template>
2
2
  <LayoutUser>
3
- <p>dasdasd</p>
3
+ <p>
4
+ dasdasd
5
+ </p>
4
6
  </LayoutUser>
5
7
  </template>
6
8
 
@@ -33,8 +35,7 @@ auth.me.set({
33
35
  position: 'Technical Specialist',
34
36
  team_code: 'DEV',
35
37
  company: 'finema',
36
- avatar_url:
37
- 'https://avatars.slack-edge.com/2023-09-25/5968557597936_c750902e3ffc4f690d80_512.jpg',
38
+ avatar_url: 'https://avatars.slack-edge.com/2023-09-25/5968557597936_c750902e3ffc4f690d80_512.jpg',
38
39
  slack_id: 'U0147KLKKH8',
39
40
  azure_id: 'fd7fbb55-a249-4b79-b439-2270981bd3ae',
40
41
  is_active: true,
package/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.1.4](https://gitlab.finema.co/finema/finework/finework-frontend-layer/compare/0.1.3...0.1.4) (2025-10-15)
4
+
5
+ ## [0.1.3](https://gitlab.finema.co/finema/finework/finework-frontend-layer/compare/0.1.2...0.1.3) (2025-10-15)
6
+
3
7
  ## [0.1.2](https://gitlab.finema.co/finema/finework/finework-frontend-layer/compare/0.1.1...0.1.2) (2025-10-14)
4
8
 
5
9
  ### Features
package/app/app.config.ts CHANGED
@@ -195,7 +195,8 @@ export default defineAppConfig({
195
195
  variants: {
196
196
  size: {
197
197
  xl: {
198
- base: 'py-2.5 disabled:bg-[#F5F5F5] disabled:text-[#737373] disabled:cursor-not-allowed w-full',
198
+ base: 'py-2.5 min-h-[100px] items-start disabled:bg-[#F5F5F5] disabled:text-[#737373] disabled:cursor-not-allowed w-full',
199
+ item: 'bg-white',
199
200
  },
200
201
  },
201
202
  },
@@ -186,15 +186,22 @@ const userMenuItems: DropdownMenuItem[] = [
186
186
  },
187
187
  ]
188
188
 
189
- const breadcrumbsItems = computed(() => [
190
- // {
191
- // label: '',
192
- // icon: 'ph:house',
193
- // to: '/',
194
- // },
195
- ...(app.pageMeta.breadcrumbs || []).map((item: any) => ({
189
+ const breadcrumbsItems = computed(() => {
190
+ const list = app.pageMeta.breadcrumbs || []
191
+ if (!list.length) return []
192
+
193
+ const [first, ...rest] = list
194
+ const home = {
195
+ label: '',
196
+ icon: 'ph:house',
197
+ to: first?.to,
198
+ }
199
+
200
+ const extra = rest.map((item: any) => ({
196
201
  ...item,
197
202
  icon: '',
198
- })),
199
- ])
203
+ }))
204
+
205
+ return [home, ...extra]
206
+ })
200
207
  </script>
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@finema/finework-layer",
3
3
  "type": "module",
4
- "version": "0.1.2",
4
+ "version": "0.1.4",
5
5
  "main": "./nuxt.config.ts",
6
6
  "scripts": {
7
7
  "dev": "nuxi dev .playground -o",