spoko-design-system 1.3.2 → 1.3.3
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,3 +1,9 @@
|
|
|
1
|
+
## [1.3.3](https://github.com/polo-blue/sds/compare/v1.3.2...v1.3.3) (2025-10-07)
|
|
2
|
+
|
|
3
|
+
### Bug Fixes
|
|
4
|
+
|
|
5
|
+
* prevent double rendering of links array with slot fallback ([ac7ec23](https://github.com/polo-blue/sds/commit/ac7ec2349b2098912ed27a303a7502c9a1c63678))
|
|
6
|
+
|
|
1
7
|
## [1.3.2](https://github.com/polo-blue/sds/compare/v1.3.1...v1.3.2) (2025-10-07)
|
|
2
8
|
|
|
3
9
|
## [1.3.1](https://github.com/polo-blue/sds/compare/v1.3.0...v1.3.1) (2025-10-05)
|
package/package.json
CHANGED
|
@@ -92,6 +92,7 @@ const validatedItems = computed(() => {
|
|
|
92
92
|
class="details-table-header"
|
|
93
93
|
/>
|
|
94
94
|
|
|
95
|
+
<!-- Links Array -->
|
|
95
96
|
<td
|
|
96
97
|
v-if="isLinksArray(row)"
|
|
97
98
|
class="details-table-cell"
|
|
@@ -120,6 +121,7 @@ const validatedItems = computed(() => {
|
|
|
120
121
|
</ul>
|
|
121
122
|
</td>
|
|
122
123
|
|
|
124
|
+
<!-- Generic String Array -->
|
|
123
125
|
<td
|
|
124
126
|
v-else-if="isGenericArray(row)"
|
|
125
127
|
class="details-table-cell"
|
|
@@ -136,13 +138,16 @@ const validatedItems = computed(() => {
|
|
|
136
138
|
</ul>
|
|
137
139
|
</td>
|
|
138
140
|
|
|
141
|
+
<!-- HTML Value -->
|
|
139
142
|
<td
|
|
140
143
|
v-else-if="isHtmlValue(row.value)"
|
|
141
144
|
class="details-table-cell"
|
|
142
145
|
v-html="row.value"
|
|
143
146
|
/>
|
|
144
147
|
|
|
148
|
+
<!-- Slot or Default Value -->
|
|
145
149
|
<slot
|
|
150
|
+
v-else
|
|
146
151
|
:name="row.id"
|
|
147
152
|
>
|
|
148
153
|
<td class="details-table-cell">
|