@finema/finework-layer 1.0.75 → 1.0.76

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,7 @@
1
1
  # Changelog
2
2
 
3
+ ## [1.0.76](https://gitlab.finema.co/finema/finework/finework-frontend-layer/compare/1.0.75...1.0.76) (2026-06-05)
4
+
3
5
  ## [1.0.75](https://gitlab.finema.co/finema/finework/finework-frontend-layer/compare/1.0.74...1.0.75) (2026-06-02)
4
6
 
5
7
  ## [1.0.74](https://gitlab.finema.co/finema/finework/finework-frontend-layer/compare/1.0.73...1.0.74) (2026-06-02)
@@ -105,9 +105,6 @@
105
105
  <span
106
106
  v-else-if="!shouldTruncateText(item) && item.type === TYPE_INFO_ITEM.HTML"
107
107
  :class="[
108
- {
109
- 'font-bold': item.label && !titleBold,
110
- },
111
108
  'prose prose-gray',
112
109
  ]"
113
110
  v-html="getValue(item)"
@@ -182,6 +179,10 @@ const props = defineProps<{
182
179
  const expandedItems = reactive<Record<string, boolean>>({})
183
180
 
184
181
  const shouldTruncateText = (item: any): boolean => {
182
+ if (item.type === TYPE_INFO_ITEM.HTML) {
183
+ return false
184
+ }
185
+
185
186
  return item.max && item.value && item.value.length > item.max
186
187
  }
187
188
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@finema/finework-layer",
3
3
  "type": "module",
4
- "version": "1.0.75",
4
+ "version": "1.0.76",
5
5
  "main": "./nuxt.config.ts",
6
6
  "scripts": {
7
7
  "dev": "nuxi dev .playground -o",