@finema/finework-layer 1.0.30 → 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 +6 -0
- package/app/components/InfoItemList.vue +5 -4
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
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
|
+
|
|
3
9
|
## [1.0.30](https://gitlab.finema.co/finema/finework/finework-frontend-layer/compare/1.0.29...1.0.30) (2026-04-03)
|
|
4
10
|
|
|
5
11
|
### 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
|
|
@@ -121,7 +121,7 @@
|
|
|
121
121
|
},
|
|
122
122
|
]"
|
|
123
123
|
>
|
|
124
|
-
{{ item.value || '-' }}
|
|
124
|
+
{{ item.value || '-' }}{{ item.subfix || '' }}
|
|
125
125
|
</NuxtLink>
|
|
126
126
|
<span
|
|
127
127
|
v-else-if="!shouldTruncateText(item)"
|
|
@@ -131,7 +131,7 @@
|
|
|
131
131
|
},
|
|
132
132
|
]"
|
|
133
133
|
>
|
|
134
|
-
{{ getValue(item) }}
|
|
134
|
+
{{ getValue(item) }}{{ item.subfix || '' }}
|
|
135
135
|
</span>
|
|
136
136
|
</div>
|
|
137
137
|
</template>
|
|
@@ -168,6 +168,7 @@ const props = defineProps<{
|
|
|
168
168
|
class?: string
|
|
169
169
|
hide?: boolean
|
|
170
170
|
linkProps?: ComponentProps<typeof NuxtLink>
|
|
171
|
+
subfix?: string
|
|
171
172
|
}>
|
|
172
173
|
vertical?: boolean
|
|
173
174
|
inline?: boolean
|