@finema/finework-layer 0.2.60 → 0.2.62

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.
@@ -40,6 +40,18 @@
40
40
  class="w-full"
41
41
  />
42
42
  </div>
43
+ <InfoItemList
44
+ :items="[
45
+ {
46
+ label: 'Status:',
47
+ value: 'Active',
48
+ },
49
+ {
50
+ label: 'Count:',
51
+ value: '42',
52
+ },
53
+ ]"
54
+ />
43
55
  </NuxtLayout>
44
56
  </LayoutAdmin>
45
57
  </template>
package/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.2.62](https://gitlab.finema.co/finema/finework/finework-frontend-layer/compare/0.2.61...0.2.62) (2025-11-24)
4
+
5
+ ### Features
6
+
7
+ * add InfoItemList component to layout-admin and update styles ([61db1a7](https://gitlab.finema.co/finema/finework/finework-frontend-layer/commit/61db1a75d13e18e0c42c3c2ac93500e174453306))
8
+
9
+ ## [0.2.61](https://gitlab.finema.co/finema/finework/finework-frontend-layer/compare/0.2.60...0.2.61) (2025-11-18)
10
+
3
11
  ## [0.2.60](https://gitlab.finema.co/finema/finework/finework-frontend-layer/compare/0.2.59...0.2.60) (2025-11-18)
4
12
 
5
13
  ## [0.2.59](https://gitlab.finema.co/finema/finework/finework-frontend-layer/compare/0.2.58...0.2.59) (2025-11-18)
@@ -68,7 +68,7 @@
68
68
  }
69
69
  :root {
70
70
  --color-background: var(--color-gray-50);
71
- --ui-primary: var(--color-primary-600);
71
+ --ui-primary: var(--color-main-600);
72
72
  }
73
73
 
74
74
  body {
@@ -27,8 +27,8 @@
27
27
  :class="[
28
28
  'mb-1',
29
29
  {
30
- 'mb-2 block text-sm font-bold text-black': !inline,
31
- 'mr-2 font-bold': inline,
30
+ 'mb-1 block text-sm text-gray-500': !inline,
31
+ 'mr-2 text-gray-500': inline,
32
32
  },
33
33
  ]"
34
34
  >
@@ -96,7 +96,10 @@
96
96
  :label="item.label"
97
97
  class="pointer-events-none"
98
98
  />
99
- <span v-else-if="!shouldTruncateText(item)">
99
+ <span
100
+ v-else-if="!shouldTruncateText(item)"
101
+ class="font-bold"
102
+ >
100
103
  {{ getValue(item) }}
101
104
  </span>
102
105
  </div>
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@finema/finework-layer",
3
3
  "type": "module",
4
- "version": "0.2.60",
4
+ "version": "0.2.62",
5
5
  "main": "./nuxt.config.ts",
6
6
  "scripts": {
7
7
  "dev": "nuxi dev .playground -o",