@finema/finework-layer 1.0.29 → 1.0.31
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 +12 -0
- package/app/components/InfoItemList.vue +6 -4
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [1.0.31](https://gitlab.finema.co/finema/finework/finework-frontend-layer/compare/1.0.30...1.0.31) (2026-04-07)
|
|
4
|
+
|
|
5
|
+
### Features
|
|
6
|
+
|
|
7
|
+
* infoitemList add subfix ([ebd2ed4](https://gitlab.finema.co/finema/finework/finework-frontend-layer/commit/ebd2ed426fe590826f3acd9ca932800250242c88))
|
|
8
|
+
|
|
9
|
+
## [1.0.30](https://gitlab.finema.co/finema/finework/finework-frontend-layer/compare/1.0.29...1.0.30) (2026-04-03)
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* add prose styling to item labels in InfoItemList component ([baa0889](https://gitlab.finema.co/finema/finework/finework-frontend-layer/commit/baa088933183421c096f5ed0d98e8a7fb15535b9))
|
|
14
|
+
|
|
3
15
|
## [1.0.29](https://gitlab.finema.co/finema/finework/finework-frontend-layer/compare/1.0.28...1.0.29) (2026-04-01)
|
|
4
16
|
|
|
5
17
|
### Bug Fixes
|
|
@@ -63,7 +63,7 @@
|
|
|
63
63
|
v-if="shouldTruncateText(item)"
|
|
64
64
|
v-show="!expandedItems[item.label]"
|
|
65
65
|
>
|
|
66
|
-
{{ truncateText(item.value || '-', item.max || 0) }}
|
|
66
|
+
{{ truncateText(item.value || '-', item.max || 0) }}{{ item.subfix || '' }}
|
|
67
67
|
<button
|
|
68
68
|
class="
|
|
69
69
|
text-info-600 ml-1 cursor-pointer text-sm
|
|
@@ -78,7 +78,7 @@
|
|
|
78
78
|
v-if="shouldTruncateText(item)"
|
|
79
79
|
v-show="expandedItems[item.label]"
|
|
80
80
|
>
|
|
81
|
-
{{ item.value || '-' }}
|
|
81
|
+
{{ item.value || '-' }}{{ item.subfix || '' }}
|
|
82
82
|
<button
|
|
83
83
|
class="
|
|
84
84
|
text-info-600 ml-1 cursor-pointer text-sm
|
|
@@ -107,6 +107,7 @@
|
|
|
107
107
|
{
|
|
108
108
|
'font-bold': item.label && !titleBold,
|
|
109
109
|
},
|
|
110
|
+
'prose prose-gray',
|
|
110
111
|
]"
|
|
111
112
|
v-html="getValue(item)"
|
|
112
113
|
/>
|
|
@@ -120,7 +121,7 @@
|
|
|
120
121
|
},
|
|
121
122
|
]"
|
|
122
123
|
>
|
|
123
|
-
{{ item.value || '-' }}
|
|
124
|
+
{{ item.value || '-' }}{{ item.subfix || '' }}
|
|
124
125
|
</NuxtLink>
|
|
125
126
|
<span
|
|
126
127
|
v-else-if="!shouldTruncateText(item)"
|
|
@@ -130,7 +131,7 @@
|
|
|
130
131
|
},
|
|
131
132
|
]"
|
|
132
133
|
>
|
|
133
|
-
{{ getValue(item) }}
|
|
134
|
+
{{ getValue(item) }}{{ item.subfix || '' }}
|
|
134
135
|
</span>
|
|
135
136
|
</div>
|
|
136
137
|
</template>
|
|
@@ -167,6 +168,7 @@ const props = defineProps<{
|
|
|
167
168
|
class?: string
|
|
168
169
|
hide?: boolean
|
|
169
170
|
linkProps?: ComponentProps<typeof NuxtLink>
|
|
171
|
+
subfix?: string
|
|
170
172
|
}>
|
|
171
173
|
vertical?: boolean
|
|
172
174
|
inline?: boolean
|