@finema/finework-layer 1.0.39 → 1.0.40
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 +2 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [1.0.40](https://gitlab.finema.co/finema/finework/finework-frontend-layer/compare/1.0.39...1.0.40) (2026-04-21)
|
|
4
|
+
|
|
5
|
+
### Bug Fixes
|
|
6
|
+
|
|
7
|
+
* add label class infoitem ([4d666ed](https://gitlab.finema.co/finema/finework/finework-frontend-layer/commit/4d666ed7b82825dd60d294d0ba099691e90c3d18))
|
|
8
|
+
|
|
3
9
|
## [1.0.39](https://gitlab.finema.co/finema/finework/finework-frontend-layer/compare/1.0.38...1.0.39) (2026-04-10)
|
|
4
10
|
|
|
5
11
|
### Bug Fixes
|
|
@@ -32,6 +32,7 @@
|
|
|
32
32
|
'font-bold text-black!': item.label && titleBold,
|
|
33
33
|
'flex-shrink-0': inline,
|
|
34
34
|
},
|
|
35
|
+
item.labelClass,
|
|
35
36
|
]"
|
|
36
37
|
:style="inline && labelWidth ? { width: `${labelWidth}px` } : undefined"
|
|
37
38
|
>
|
|
@@ -159,6 +160,7 @@ enum TYPE_INFO_ITEM {
|
|
|
159
160
|
const props = defineProps<{
|
|
160
161
|
items: Array<{
|
|
161
162
|
label: string
|
|
163
|
+
labelClass?: string
|
|
162
164
|
value?: any
|
|
163
165
|
component?: any
|
|
164
166
|
props?: Record<string, any>
|