@finema/finework-layer 0.2.32 → 0.2.34

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.
@@ -7,6 +7,18 @@
7
7
  >
8
8
  <p>dasdasd</p>
9
9
  <Card> asdasdasdasdasdasd </Card>
10
+ <div class="bg-white p-4">
11
+ <Tabs
12
+ variant="link"
13
+ :items="items"
14
+ class="w-full"
15
+ />
16
+ <Tabs
17
+ orientation="vertical"
18
+ :items="items"
19
+ class="w-full"
20
+ />
21
+ </div>
10
22
  </LayoutAdmin>
11
23
  </template>
12
24
 
@@ -14,6 +26,18 @@
14
26
  import type { NavigationMenuItem } from '@nuxt/ui'
15
27
 
16
28
  const auth = useAuth()
29
+ const items = ref([
30
+ {
31
+ label: 'Account',
32
+ icon: 'i-lucide-user',
33
+ content: 'This is the account content.',
34
+ },
35
+ {
36
+ label: 'Password',
37
+ icon: 'i-lucide-lock',
38
+ content: 'This is the password content.',
39
+ },
40
+ ])
17
41
 
18
42
  useApp().definePage({
19
43
  title: 'Test Layout',
package/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.2.34](https://gitlab.finema.co/finema/finework/finework-frontend-layer/compare/0.2.33...0.2.34) (2025-10-29)
4
+
5
+ ### Bug Fixes
6
+
7
+ * component infoItemList ([53df21d](https://gitlab.finema.co/finema/finework/finework-frontend-layer/commit/53df21d9009b3f48dd7d82007863cb59f0582411))
8
+
9
+ ## [0.2.33](https://gitlab.finema.co/finema/finework/finework-frontend-layer/compare/0.2.32...0.2.33) (2025-10-28)
10
+
3
11
  ## [0.2.32](https://gitlab.finema.co/finema/finework/finework-frontend-layer/compare/0.2.31...0.2.32) (2025-10-28)
4
12
 
5
13
  ## [0.2.31](https://gitlab.finema.co/finema/finework/finework-frontend-layer/compare/0.2.30...0.2.31) (2025-10-28)
package/app/app.config.ts CHANGED
@@ -74,6 +74,7 @@ export default defineAppConfig({
74
74
  root: ' px-4 py-2 bg-white rounded-xl',
75
75
  indicator: 'inset-y-5 ',
76
76
  label: 'text-[#344054]',
77
+ trigger: 'data-[state=active]:bg-[#F9FAFB]',
77
78
  },
78
79
  },
79
80
  {
@@ -84,6 +85,7 @@ export default defineAppConfig({
84
85
  list: 'items-center',
85
86
  root: 'p-4 bg-white rounded-xl',
86
87
  label: 'text-[#344054]',
88
+ trigger: 'data-[state=active]:bg-[#F9FAFB]',
87
89
  },
88
90
  },
89
91
  {
@@ -92,7 +94,7 @@ export default defineAppConfig({
92
94
  class: {
93
95
  list: 'border-b -mb-px',
94
96
  indicator: '-bottom-px h-px',
95
- trigger: 'data-[state=active]:text-primary data-[state=active]:bg-[#F9FAFB]',
97
+ trigger: 'data-[state=active]:text-primary ',
96
98
  },
97
99
  },
98
100
  {
@@ -100,7 +102,7 @@ export default defineAppConfig({
100
102
  variant: 'link',
101
103
  class: {
102
104
  list: 'border-s -ms-px',
103
- indicator: '-start-px w-px',
105
+ indicator: '-start-px w-px ',
104
106
  },
105
107
  },
106
108
  {
@@ -108,7 +110,7 @@ export default defineAppConfig({
108
110
  variant: 'pill',
109
111
  class: {
110
112
  indicator: 'bg-[#F9FAFB]',
111
- trigger: 'data-[state=active]:text-primary data-[state=active]:bg-[#F9FAFB] ',
113
+ trigger: 'data-[state=active]:text-primary',
112
114
  },
113
115
  },
114
116
 
@@ -171,7 +171,6 @@ const getValue = (item: any): string => {
171
171
  hour: '2-digit',
172
172
  minute: '2-digit',
173
173
  hour12: false,
174
- timeZone: 'UTC',
175
174
  })
176
175
  : '-'
177
176
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@finema/finework-layer",
3
3
  "type": "module",
4
- "version": "0.2.32",
4
+ "version": "0.2.34",
5
5
  "main": "./nuxt.config.ts",
6
6
  "scripts": {
7
7
  "dev": "nuxi dev .playground -o",