@finema/finework-layer 0.2.133 → 0.2.134
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
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.2.134](https://gitlab.finema.co/finema/finework/finework-frontend-layer/compare/0.2.133...0.2.134) (2026-02-11)
|
|
4
|
+
|
|
5
|
+
### Features
|
|
6
|
+
|
|
7
|
+
* enhance InfoItemList with vertical and inline options, and add label width support ([1ced47a](https://gitlab.finema.co/finema/finework/finework-frontend-layer/commit/1ced47adb67c390d2b389e6b7575344a62ef6d83))
|
|
8
|
+
|
|
3
9
|
## [0.2.133](https://gitlab.finema.co/finema/finework/finework-frontend-layer/compare/0.2.132...0.2.133) (2026-02-10)
|
|
4
10
|
|
|
5
11
|
## [0.2.132](https://gitlab.finema.co/finema/finework/finework-frontend-layer/compare/0.2.131...0.2.132) (2026-02-10)
|
|
@@ -29,9 +29,10 @@
|
|
|
29
29
|
{
|
|
30
30
|
'mb-1 block text-sm text-gray-500': !inline,
|
|
31
31
|
'mr-2 text-gray-500': inline,
|
|
32
|
-
'font-bold
|
|
32
|
+
'font-bold text-black!': item.label && titleBold,
|
|
33
33
|
},
|
|
34
34
|
]"
|
|
35
|
+
:style="inline && labelWidth ? { width: `${labelWidth}px` } : undefined"
|
|
35
36
|
>
|
|
36
37
|
{{ item.label }}
|
|
37
38
|
</p>
|
|
@@ -82,15 +83,6 @@
|
|
|
82
83
|
แสดงน้อยลง
|
|
83
84
|
</button>
|
|
84
85
|
</span>
|
|
85
|
-
<!-- <span >
|
|
86
|
-
<Icon
|
|
87
|
-
class="size-5"
|
|
88
|
-
:class="item.value ? 'text-success' : 'text-error'"
|
|
89
|
-
:name="item.value
|
|
90
|
-
? 'material-symbols:check-circle-outline-rounded'
|
|
91
|
-
: 'material-symbols:cancel-outline-rounded'"
|
|
92
|
-
/>
|
|
93
|
-
</span> -->
|
|
94
86
|
<Checkbox
|
|
95
87
|
v-if="item.type === TYPE_INFO_ITEM.BOOLEAN"
|
|
96
88
|
v-model="item.value"
|
|
@@ -151,6 +143,7 @@ defineProps<{
|
|
|
151
143
|
inline?: boolean
|
|
152
144
|
customClass?: string
|
|
153
145
|
titleBold?: boolean
|
|
146
|
+
labelWidth?: string | number
|
|
154
147
|
}>()
|
|
155
148
|
|
|
156
149
|
const expandedItems = reactive<Record<string, boolean>>({})
|