@crtobiasdelsud/portal-ui 1.0.4 → 1.0.5
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,23 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [Unreleased] — 2026-05-18
|
|
4
|
+
|
|
5
|
+
### Fixed
|
|
6
|
+
|
|
7
|
+
- `EditorOutput` + `EditorOutputFull`: `@editorjs/quote` guarda `caption` como HTML via `innerHTML`; se renderizaba como texto plano mostrando tags HTML crudos en el autor de la cita. Corregido con `dangerouslySetInnerHTML`.
|
|
8
|
+
|
|
9
|
+
---
|
|
10
|
+
|
|
11
|
+
## 1.0.2 — 2026-05-15
|
|
12
|
+
|
|
13
|
+
Patch release. Fixes menores sobre la migracion 1.0.0; sin breaking changes
|
|
14
|
+
en API publica. Detalle de cambios: ver `git log v1.0.1..v1.0.2 -- src/`.
|
|
15
|
+
|
|
16
|
+
## 1.0.1 — 2026-05-14
|
|
17
|
+
|
|
18
|
+
Patch release post-1.0.0. Sin breaking changes en API publica.
|
|
19
|
+
Detalle de cambios: ver `git log v1.0.0..v1.0.1 -- src/`.
|
|
20
|
+
|
|
3
21
|
## 1.0.0 — 2026-05-14
|
|
4
22
|
|
|
5
23
|
Migración 100% completa. Paridad total entre portal y CMS — todos los
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@crtobiasdelsud/portal-ui",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.5",
|
|
4
4
|
"description": "Componentes compartidos entre el portal (Next) y el CMS (Vite) — widgets, views, providers para adapters y article pool.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./src/index.js",
|
|
@@ -109,7 +109,7 @@ function Block({ block, cls, isAmp }) {
|
|
|
109
109
|
return (
|
|
110
110
|
<blockquote className={cls.quote} suppressHydrationWarning>
|
|
111
111
|
<p dangerouslySetInnerHTML={{ __html: block.data.text }} suppressHydrationWarning />
|
|
112
|
-
{block.data.caption && <cite
|
|
112
|
+
{block.data.caption && <cite dangerouslySetInnerHTML={{ __html: block.data.caption }} suppressHydrationWarning />}
|
|
113
113
|
</blockquote>
|
|
114
114
|
)
|
|
115
115
|
|
|
@@ -109,7 +109,7 @@ function Block({ block, cls, isAmp }) {
|
|
|
109
109
|
return (
|
|
110
110
|
<blockquote className={cls.quote}>
|
|
111
111
|
<p dangerouslySetInnerHTML={{ __html: block.data.text }} />
|
|
112
|
-
{block.data.caption && <cite
|
|
112
|
+
{block.data.caption && <cite dangerouslySetInnerHTML={{ __html: block.data.caption }} />}
|
|
113
113
|
</blockquote>
|
|
114
114
|
)
|
|
115
115
|
|