@finema/finework-layer 0.2.61 → 0.2.63

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: '',
51
+ value: '42',
52
+ },
53
+ ]"
54
+ />
43
55
  </NuxtLayout>
44
56
  </LayoutAdmin>
45
57
  </template>
package/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.2.63](https://gitlab.finema.co/finema/finework/finework-frontend-layer/compare/0.2.62...0.2.63) (2025-11-24)
4
+
5
+ ### Bug Fixes
6
+
7
+ * infolist if no label text normal ([4f75ca1](https://gitlab.finema.co/finema/finework/finework-frontend-layer/commit/4f75ca107e0f390e28cc3033507a63a3140ab4ca))
8
+
9
+ ## [0.2.62](https://gitlab.finema.co/finema/finework/finework-frontend-layer/compare/0.2.61...0.2.62) (2025-11-24)
10
+
11
+ ### Features
12
+
13
+ * add InfoItemList component to layout-admin and update styles ([61db1a7](https://gitlab.finema.co/finema/finework/finework-frontend-layer/commit/61db1a75d13e18e0c42c3c2ac93500e174453306))
14
+
3
15
  ## [0.2.61](https://gitlab.finema.co/finema/finework/finework-frontend-layer/compare/0.2.60...0.2.61) (2025-11-18)
4
16
 
5
17
  ## [0.2.60](https://gitlab.finema.co/finema/finework/finework-frontend-layer/compare/0.2.59...0.2.60) (2025-11-18)
@@ -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,14 @@
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="[
102
+ {
103
+ 'font-bold': item.label,
104
+ },
105
+ ]"
106
+ >
100
107
  {{ getValue(item) }}
101
108
  </span>
102
109
  </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.61",
4
+ "version": "0.2.63",
5
5
  "main": "./nuxt.config.ts",
6
6
  "scripts": {
7
7
  "dev": "nuxi dev .playground -o",