@finema/finework-layer 0.2.134 → 0.2.135

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.
@@ -61,7 +61,7 @@
61
61
  {
62
62
  label: '12',
63
63
  value: '<p>123123</p>',
64
- type: 'wysiwyg',
64
+ type: 'html',
65
65
  },
66
66
  ]"
67
67
  />
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.2.135](https://gitlab.finema.co/finema/finework/finework-frontend-layer/compare/0.2.134...0.2.135) (2026-02-11)
4
+
5
+ ### Bug Fixes
6
+
7
+ * update WYSIWYG type to HTML in InfoItemList component ([9d855c5](https://gitlab.finema.co/finema/finework/finework-frontend-layer/commit/9d855c51a6b9f8ac3b8cd4f65a0329c7df3f5665))
8
+
3
9
  ## [0.2.134](https://gitlab.finema.co/finema/finework/finework-frontend-layer/compare/0.2.133...0.2.134) (2026-02-11)
4
10
 
5
11
  ### Features
@@ -90,7 +90,7 @@
90
90
  class="pointer-events-none"
91
91
  />
92
92
  <span
93
- v-else-if="!shouldTruncateText(item) && item.type === TYPE_INFO_ITEM.WYSIWYG"
93
+ v-else-if="!shouldTruncateText(item) && item.type === TYPE_INFO_ITEM.HTML"
94
94
  :class="[
95
95
  {
96
96
  'font-bold': item.label && !titleBold,
@@ -124,7 +124,7 @@ enum TYPE_INFO_ITEM {
124
124
  DATE = 'date',
125
125
  DATE_TIME = 'date_time',
126
126
  BOOLEAN = 'boolean',
127
- WYSIWYG = 'wysiwyg',
127
+ HTML = 'html',
128
128
  }
129
129
 
130
130
  defineProps<{
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@finema/finework-layer",
3
3
  "type": "module",
4
- "version": "0.2.134",
4
+ "version": "0.2.135",
5
5
  "main": "./nuxt.config.ts",
6
6
  "scripts": {
7
7
  "dev": "nuxi dev .playground -o",