libreria-astro-lefebvre 0.1.72 → 0.1.74
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/package.json
CHANGED
|
@@ -0,0 +1,98 @@
|
|
|
1
|
+
import type { ComponentMetadata } from '../interfaces/types';
|
|
2
|
+
|
|
3
|
+
export const metadata: ComponentMetadata = {
|
|
4
|
+
component_name: 'Contenido_2026_Huesca',
|
|
5
|
+
category: 'Contenido de Imagen',
|
|
6
|
+
name: 'Sección a dos columnas con etiqueta, título, descripción, texto, botón e imagen o vídeo lateral 2026',
|
|
7
|
+
description: 'Sección de contenido con fondo de degradado cónico suave, una etiqueta tipo badge (fondo azul translúcido) al 100% de ancho en la parte superior y, debajo, un bloque a dos columnas: en la izquierda el título (h2), la descripción, un texto enriquecido (editor, con listas desordenadas renderizadas con icono de check azul) y un botón primario opcional; en la derecha una imagen o un vídeo centrados (mutuamente exclusivos: si hay vídeo se muestra el vídeo, si no, la imagen). Las columnas se alinean verticalmente al centro con flex y colapsan a una sola columna en móvil',
|
|
8
|
+
framework: 'Astro',
|
|
9
|
+
priority: 1,
|
|
10
|
+
tags: ['contenido', 'imagen', 'video', 'texto', 'dos columnas', 'etiqueta', 'boton', 'cta'],
|
|
11
|
+
fields: [
|
|
12
|
+
{
|
|
13
|
+
name: 'tag',
|
|
14
|
+
type: 'text',
|
|
15
|
+
help: 'Etiqueta superior (badge con fondo azul translúcido) que ocupa el 100% del ancho por encima del bloque a dos columnas. Si se deja vacía, NO se muestra',
|
|
16
|
+
label: 'Etiqueta',
|
|
17
|
+
mandatory: false,
|
|
18
|
+
example_value: 'Calculadora'
|
|
19
|
+
},
|
|
20
|
+
{
|
|
21
|
+
name: 'title',
|
|
22
|
+
type: 'text',
|
|
23
|
+
help: 'Título principal del bloque (h2). Admite HTML. Se muestra en la columna izquierda. Si se deja vacío, NO se muestra',
|
|
24
|
+
label: 'Título (h2)',
|
|
25
|
+
mandatory: false,
|
|
26
|
+
example_value: 'Calcula tu ahorro en cuestión de segundos'
|
|
27
|
+
},
|
|
28
|
+
{
|
|
29
|
+
name: 'description',
|
|
30
|
+
type: 'text',
|
|
31
|
+
help: 'Descripción que aparece debajo del título, en la columna izquierda. Texto plano. Si se deja vacía, NO se muestra',
|
|
32
|
+
label: 'Descripción',
|
|
33
|
+
mandatory: false,
|
|
34
|
+
example_value: 'Estima el retorno de tu inversión con nuestra herramienta interactiva'
|
|
35
|
+
},
|
|
36
|
+
{
|
|
37
|
+
name: 'text',
|
|
38
|
+
type: 'textArea',
|
|
39
|
+
help: 'Texto enriquecido (editor) que aparece debajo de la descripción, en la columna izquierda. Admite HTML. Si se deja vacío, NO se muestra',
|
|
40
|
+
label: 'Texto',
|
|
41
|
+
mandatory: false,
|
|
42
|
+
example_value: '<p>Introduce tus datos y obtén al instante una estimación personalizada del ahorro que puedes conseguir.</p>'
|
|
43
|
+
},
|
|
44
|
+
{
|
|
45
|
+
name: 'textBtn',
|
|
46
|
+
type: 'text',
|
|
47
|
+
help: 'Texto del botón que aparece debajo del texto, en la columna izquierda. El botón solo se muestra si este campo Y "Enlace del botón" tienen valor',
|
|
48
|
+
label: 'Texto del botón',
|
|
49
|
+
mandatory: false,
|
|
50
|
+
example_value: 'Calcular ahora'
|
|
51
|
+
},
|
|
52
|
+
{
|
|
53
|
+
name: 'linkBtn',
|
|
54
|
+
type: 'text',
|
|
55
|
+
help: 'URL de destino del botón. Si se deja vacío, el botón NO aparece aunque "Texto del botón" tenga valor',
|
|
56
|
+
label: 'Enlace del botón',
|
|
57
|
+
mandatory: false,
|
|
58
|
+
example_value: '/calculadora'
|
|
59
|
+
},
|
|
60
|
+
{
|
|
61
|
+
name: 'image',
|
|
62
|
+
type: 'image',
|
|
63
|
+
help: 'Imagen que aparece en la columna derecha, centrada verticalmente respecto al texto. Mutuamente exclusiva con el vídeo: si "URL del video" está relleno, se muestra el vídeo en su lugar',
|
|
64
|
+
label: 'Imagen',
|
|
65
|
+
mandatory: false,
|
|
66
|
+
exclusive_group: 'media',
|
|
67
|
+
exclusive_group_label: 'Contenido multimedia',
|
|
68
|
+
example_value: 'https://assets.lefebvre.es/media/img/preview-comp/comp-w-4-3.png'
|
|
69
|
+
},
|
|
70
|
+
{
|
|
71
|
+
name: 'iframeSrc',
|
|
72
|
+
type: 'video',
|
|
73
|
+
help: 'URL del vídeo MP4 que aparece en la columna derecha (se reproduce con autoplay, muted y loop). Mutuamente exclusivo con la imagen: si este campo está relleno, se muestra el vídeo; si está vacío, la imagen',
|
|
74
|
+
label: 'URL del video',
|
|
75
|
+
mandatory: false,
|
|
76
|
+
exclusive_group: 'media',
|
|
77
|
+
exclusive_group_label: 'Contenido multimedia',
|
|
78
|
+
example_value: ''
|
|
79
|
+
},
|
|
80
|
+
{
|
|
81
|
+
name: 'altImage',
|
|
82
|
+
type: 'text',
|
|
83
|
+
help: 'Texto alternativo de la imagen para accesibilidad. Solo se usa si se muestra la imagen',
|
|
84
|
+
label: 'Alt de la imagen',
|
|
85
|
+
mandatory: false,
|
|
86
|
+
example_value: 'Captura de la calculadora de ahorro mostrando los resultados'
|
|
87
|
+
},
|
|
88
|
+
{
|
|
89
|
+
name: 'loading',
|
|
90
|
+
type: 'select',
|
|
91
|
+
help: 'Tipo de carga de la imagen. "Inmediata" (eager) si el componente está above-the-fold; "Diferida" (lazy) si se renderiza fuera del viewport inicial. Solo aplica a la imagen',
|
|
92
|
+
label: 'Carga de la imagen',
|
|
93
|
+
options: ['lazy', 'eager'],
|
|
94
|
+
options_labels: ['Diferida', 'Inmediata'],
|
|
95
|
+
example_value: 'lazy'
|
|
96
|
+
}
|
|
97
|
+
]
|
|
98
|
+
};
|
|
@@ -0,0 +1,92 @@
|
|
|
1
|
+
---
|
|
2
|
+
import { extractImageUrl } from '../../lib/functions.js';
|
|
3
|
+
|
|
4
|
+
const {
|
|
5
|
+
tag = '',
|
|
6
|
+
title = '',
|
|
7
|
+
description = '',
|
|
8
|
+
text = '',
|
|
9
|
+
textBtn = '',
|
|
10
|
+
linkBtn = '',
|
|
11
|
+
image = '',
|
|
12
|
+
iframeSrc = '',
|
|
13
|
+
altImage = '',
|
|
14
|
+
loading = 'lazy' as 'lazy' | 'eager',
|
|
15
|
+
} = Astro.props;
|
|
16
|
+
|
|
17
|
+
const imageUrl = extractImageUrl(image);
|
|
18
|
+
// Imagen y vídeo son excluyentes (toggle en Mecano): si el campo de vídeo
|
|
19
|
+
// está relleno se muestra el vídeo; si no, la imagen
|
|
20
|
+
const videoUrl = iframeSrc || '';
|
|
21
|
+
const randomId = Math.floor(Math.random() * 1000);
|
|
22
|
+
---
|
|
23
|
+
|
|
24
|
+
<section class="w-full flex justify-center [background:conic-gradient(from_180deg_at_50%_44.39%,rgba(33,52,241,0.01)_0.07096946937963367deg,rgba(255,255,255,0.17)_177.9798674583435deg),var(--Background-Base,#FFF)]" id={`comp-ContHuesca-${randomId}`}>
|
|
25
|
+
<article class="w-full max-w-7xl flex flex-col py-6 px-4">
|
|
26
|
+
{tag && (
|
|
27
|
+
<span class="text-[#363942] text-center font-inter text-base not-italic font-normal leading-6 flex items-center justify-center gap-2.5 w-fit py-2 px-3 rounded bg-[#001772]/10 mb-8">{tag}</span>
|
|
28
|
+
)}
|
|
29
|
+
|
|
30
|
+
<div class="flex flex-col md:flex-row items-center gap-6">
|
|
31
|
+
<div class="w-full md:w-1/2 flex flex-col">
|
|
32
|
+
{title && (
|
|
33
|
+
<h2 class="font-poppins text-[#020618] text-left text-[32px] not-italic font-normal leading-10 mb-8" set:html={title}></h2>
|
|
34
|
+
)}
|
|
35
|
+
{description && (
|
|
36
|
+
<p class="text-[#363942] font-inter font-normal text-base not-italic leading-6 mb-6">{description}</p>
|
|
37
|
+
)}
|
|
38
|
+
{text && (
|
|
39
|
+
<div class="text-[#020618]/90 font-inter text-base not-italic font-normal leading-6 flex flex-col gap-4 listIco" set:html={text} />
|
|
40
|
+
)}
|
|
41
|
+
{textBtn && linkBtn && (
|
|
42
|
+
<a href={linkBtn} target="_self" class="flex flex-col justify-center items-start w-fit h-12 min-w-[120px] px-5 mt-6 rounded-lg bg-[#2134F1] shadow-[0_2px_4px_-2px_rgba(0,0,0,0.08),0_4px_8px_-2px_rgba(0,0,0,0.04)] text-white font-inter font-semibold text-sm md:text-base transition-all duration-300 hover:bg-[#1929C9]">{textBtn}</a>
|
|
43
|
+
)}
|
|
44
|
+
</div>
|
|
45
|
+
|
|
46
|
+
<div class="w-full md:w-1/2 flex items-center justify-end">
|
|
47
|
+
{videoUrl ? (
|
|
48
|
+
<video autoplay loop muted playsinline preload="metadata" class="w-full md:w-3/5 h-auto object-cover rounded-lg">
|
|
49
|
+
<source src={videoUrl} type="video/mp4" />
|
|
50
|
+
</video>
|
|
51
|
+
) : (
|
|
52
|
+
<img
|
|
53
|
+
src={imageUrl}
|
|
54
|
+
alt={altImage}
|
|
55
|
+
class="w-full md:w-3/5 h-auto object-cover rounded-lg"
|
|
56
|
+
loading={loading}
|
|
57
|
+
/>
|
|
58
|
+
)}
|
|
59
|
+
</div>
|
|
60
|
+
</div>
|
|
61
|
+
</article>
|
|
62
|
+
</section>
|
|
63
|
+
|
|
64
|
+
<style>
|
|
65
|
+
.listIco ul {
|
|
66
|
+
list-style: none;
|
|
67
|
+
padding-left: 0;
|
|
68
|
+
margin: 16px 0;
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
.listIco ul li {
|
|
72
|
+
position: relative;
|
|
73
|
+
padding-left: 28px;
|
|
74
|
+
margin-bottom: 12px;
|
|
75
|
+
color: #363942;
|
|
76
|
+
font-family: Inter, sans-serif;
|
|
77
|
+
font-size: 1em;
|
|
78
|
+
line-height: 1.5em;
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
.listIco ul li::before {
|
|
82
|
+
content: "";
|
|
83
|
+
position: absolute;
|
|
84
|
+
left: 0;
|
|
85
|
+
top: 2px;
|
|
86
|
+
width: 20px;
|
|
87
|
+
height: 20px;
|
|
88
|
+
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M9.17788 0.00580546C9.12701 0.0108677 8.96575 0.025754 8.81951 0.0389066C5.20138 0.363884 2.01164 2.75985 0.671987 6.15893C0.200921 7.35413 0 8.42681 0 9.74663C0 10.5144 0.0444848 11 0.174609 11.6536C0.68334 14.2087 2.19721 16.4507 4.39222 17.8999C6.63897 19.3832 9.42877 19.8642 12.0564 19.2212C15.3567 18.4137 17.9874 15.9659 19.0345 12.7285C19.9357 9.94188 19.5131 6.83849 17.8996 4.39581C16.7833 2.70576 15.1898 1.40798 13.3329 0.676495C12.4733 0.337879 11.6783 0.144728 10.7039 0.0378433C10.4708 0.0122547 9.34953 -0.0112536 9.17788 0.00580546ZM9.1432 1.462C7.5796 1.59533 6.13149 2.11736 4.92363 2.98312C4.24438 3.47 3.46618 4.24801 2.97918 4.92709C2.2656 5.92213 1.74702 7.18032 1.55005 8.39438C1.46638 8.9102 1.4563 9.05576 1.4563 9.74663C1.4563 10.4375 1.46638 10.5831 1.55005 11.0989C1.61077 11.4731 1.78586 12.1885 1.8598 12.3643C1.87185 12.393 1.92949 12.5465 1.98789 12.7054C2.16248 13.1804 2.47595 13.8021 2.7747 14.2657C3.36847 15.1871 4.32602 16.1416 5.24732 16.7303C5.69737 17.0179 6.32256 17.3313 6.78486 17.5012C6.94382 17.5596 7.09732 17.6172 7.12599 17.6292C7.30187 17.7032 8.01742 17.8782 8.39177 17.9389C8.90771 18.0226 9.05331 18.0326 9.74434 18.0326C10.4354 18.0326 10.581 18.0226 11.0969 17.9389C11.4713 17.8782 12.1868 17.7032 12.3627 17.6292C12.3914 17.6172 12.5449 17.5596 12.7038 17.5012C13.1661 17.3313 13.7913 17.0179 14.2414 16.7303C14.9909 16.2514 15.8059 15.4939 16.3721 14.75C17.1657 13.7074 17.7281 12.3967 17.9386 11.0989C18.0223 10.5831 18.0324 10.4375 18.0324 9.74663C18.0324 9.05576 18.0223 8.9102 17.9386 8.39438C17.8779 8.02012 17.7028 7.30475 17.6289 7.12891C17.6168 7.10025 17.5592 6.94679 17.5008 6.78787C17.3262 6.31283 17.0127 5.69119 16.714 5.22759C16.1202 4.30612 15.1627 3.35165 14.2414 2.76295C13.7913 2.47535 13.1661 2.16191 12.7038 1.99208C12.5449 1.93369 12.3914 1.87606 12.3627 1.86402C12.2774 1.82817 11.7609 1.68783 11.5247 1.63633C10.9249 1.50557 10.5953 1.47043 9.88307 1.46128C9.53336 1.4568 9.20042 1.45712 9.1432 1.462ZM12.6669 6.80699C12.6021 6.82939 12.5085 6.8804 12.4588 6.92034C12.4092 6.96029 11.4741 7.88793 10.3808 8.98179L8.39299 10.9706L7.70854 10.2898C6.92315 9.50865 6.88699 9.48283 6.57664 9.48193C6.43294 9.48149 6.38041 9.49252 6.27112 9.54596C5.93369 9.711 5.77866 10.101 5.90911 10.4565C5.95498 10.5816 6.02347 10.6558 6.95533 11.591C8.09016 12.7298 8.07402 12.7172 8.39177 12.7166C8.53422 12.7163 8.6033 12.7042 8.69234 12.6637C8.78804 12.6203 9.2145 12.2045 11.1694 10.2485C13.4275 7.98936 13.5331 7.87997 13.5798 7.75205C13.7912 7.17318 13.2446 6.60734 12.6669 6.80699Z' fill='%232134F1'/%3E%3C/svg%3E");
|
|
89
|
+
background-repeat: no-repeat;
|
|
90
|
+
background-size: contain;
|
|
91
|
+
}
|
|
92
|
+
</style>
|
|
@@ -18,6 +18,7 @@ import * as Contenido_2026_Cabra from '../carbins/Contenido_2026_Cabra.ts';
|
|
|
18
18
|
import * as Contenido_2026_Denia from '../carbins/Contenido_2026_Denia.ts';
|
|
19
19
|
import * as Contenido_2026_Dubai from '../carbins/Contenido_2026_Dubai.ts';
|
|
20
20
|
import * as Contenido_2026_Estocolmo from '../carbins/Contenido_2026_Estocolmo.ts';
|
|
21
|
+
import * as Contenido_2026_Huesca from '../carbins/Contenido_2026_Huesca.ts';
|
|
21
22
|
import * as Contenido_2026_Jaen from '../carbins/Contenido_2026_Jaen.ts';
|
|
22
23
|
import * as Contenido_2026_Leon from '../carbins/Contenido_2026_Leon.ts';
|
|
23
24
|
import * as Contenido_2026_Mallorca from '../carbins/Contenido_2026_Mallorca.ts';
|
|
@@ -109,6 +110,7 @@ export const components = [
|
|
|
109
110
|
{component: Contenido_2026_Denia},
|
|
110
111
|
{component: Contenido_2026_Dubai},
|
|
111
112
|
{component: Contenido_2026_Estocolmo},
|
|
113
|
+
{component: Contenido_2026_Huesca},
|
|
112
114
|
{component: Contenido_2026_Jaen},
|
|
113
115
|
{component: Contenido_2026_Leon},
|
|
114
116
|
{component: Contenido_2026_Mallorca},
|
package/src/index.ts
CHANGED
|
@@ -23,6 +23,7 @@ import Contenido_2026_Cabra from './components/Astro/Contenido_2026_Cabra.astro'
|
|
|
23
23
|
import Contenido_2026_Denia from './components/Astro/Contenido_2026_Denia.astro';
|
|
24
24
|
import Contenido_2026_Dubai from './components/Astro/Contenido_2026_Dubai.astro';
|
|
25
25
|
import Contenido_2026_Estocolmo from './components/Astro/Contenido_2026_Estocolmo.astro';
|
|
26
|
+
import Contenido_2026_Huesca from './components/Astro/Contenido_2026_Huesca.astro';
|
|
26
27
|
import Contenido_2026_Jaen from './components/Astro/Contenido_2026_Jaen.astro';
|
|
27
28
|
import Contenido_2026_Leon from './components/Astro/Contenido_2026_Leon.astro';
|
|
28
29
|
import Contenido_2026_Mallorca from './components/Astro/Contenido_2026_Mallorca.astro';
|
|
@@ -99,7 +100,7 @@ import ReactButton from './components/React/ReactButton.jsx';
|
|
|
99
100
|
// Exporta todos los componentes uno a uno para que puedan ser usados directamente.
|
|
100
101
|
|
|
101
102
|
|
|
102
|
-
export { VueButton, Author_2025_Algarve, Button, CTA_2025_Formentera, Cabecera_2025_Barcelona, Cabecera_2025_Madrid, Cabecera_2026_Bilbao, Cabecera_2026_Dakota, Cabecera_2026_Madrid, Calculadora_2026_Lisboa, Card_2025_Malta, Contenido_2025_Alcorcon, Contenido_2025_Cordoba, Contenido_2025_Granada, Contenido_2025_Malaga, Contenido_2025_Montevideo, Contenido_2026_Cabra, Contenido_2026_Denia, Contenido_2026_Dubai, Contenido_2026_Estocolmo, Contenido_2026_Jaen, Contenido_2026_Leon, Contenido_2026_Mallorca, Contenido_2026_Marruecos, Contenido_2026_Menorca, Contenido_2026_Michigan, Contenido_2026_Moraira, Contenido_2026_Mostoles, Contenido_2026_Orcasitas, Contenido_2026_Oslo, Contenido_2026_Quito, Contenido_2026_Seattle, Contenido_2026_Sevilla, Contenido_2026_Tokyo, Contenido_2026_Ubeda, Contenido_2026_Yakarta, CorpFooter, CorpHero, CorpNavigation, Enlace_2025_Venecia, FAQ_2025_Hiroshima, Footer_2025_Napoles, Formulario_2025_Nara, Formulario_2025_Seul, Formulario_2025_Teruel, Formulario_2026_Carabanchel, Formulario_2026_Wichita, Galeria_2026_Segorbe, GeometricShape, GeometricShapeCard, HeaderCorporativo, Hero_2025_Benidorm, Hero_2026_Benidorm, ImageTextSimple, Imagen_2025_Bogota, Imagen_2025_Fukushima, Imagen_2026_Algar, Indice_2025_Taiwan, Mapa_2026_Girona, Modal_2025_Sagunto, Modal_2026_Almeria, Paginacion_2025_Paris, RRSS_2025_Pisa, SEO_Head_Section, SEO_Schema_Page, Separador_2025_Reinosa, Separador_2025_Toledo, Share_2025_Florencia, SpectrumSeparator, Sumario_2025_Beijing, Tabla_2025_Fuenlabrada, Tabla_2026_Cadiz, Tag_2025_Bolonia, TestHijo, TestPadre, Test_2026_Gaza, TextBox, TextImageBackground, TextImageBlock, TextImageCard, TextImageHeader, Texto_2025_Kyoto, Texto_2026_Alicante, Texto_2026_Castellon, Tiempo_2025_Londres, Titulo_2025_Algeciras, Titulo_2025_Santorini, VideoAutoplay, Video_2025_Polop, Video_2025_Valencia, Video_2026_Andujar, ReactButton };
|
|
103
|
+
export { VueButton, Author_2025_Algarve, Button, CTA_2025_Formentera, Cabecera_2025_Barcelona, Cabecera_2025_Madrid, Cabecera_2026_Bilbao, Cabecera_2026_Dakota, Cabecera_2026_Madrid, Calculadora_2026_Lisboa, Card_2025_Malta, Contenido_2025_Alcorcon, Contenido_2025_Cordoba, Contenido_2025_Granada, Contenido_2025_Malaga, Contenido_2025_Montevideo, Contenido_2026_Cabra, Contenido_2026_Denia, Contenido_2026_Dubai, Contenido_2026_Estocolmo, Contenido_2026_Huesca, Contenido_2026_Jaen, Contenido_2026_Leon, Contenido_2026_Mallorca, Contenido_2026_Marruecos, Contenido_2026_Menorca, Contenido_2026_Michigan, Contenido_2026_Moraira, Contenido_2026_Mostoles, Contenido_2026_Orcasitas, Contenido_2026_Oslo, Contenido_2026_Quito, Contenido_2026_Seattle, Contenido_2026_Sevilla, Contenido_2026_Tokyo, Contenido_2026_Ubeda, Contenido_2026_Yakarta, CorpFooter, CorpHero, CorpNavigation, Enlace_2025_Venecia, FAQ_2025_Hiroshima, Footer_2025_Napoles, Formulario_2025_Nara, Formulario_2025_Seul, Formulario_2025_Teruel, Formulario_2026_Carabanchel, Formulario_2026_Wichita, Galeria_2026_Segorbe, GeometricShape, GeometricShapeCard, HeaderCorporativo, Hero_2025_Benidorm, Hero_2026_Benidorm, ImageTextSimple, Imagen_2025_Bogota, Imagen_2025_Fukushima, Imagen_2026_Algar, Indice_2025_Taiwan, Mapa_2026_Girona, Modal_2025_Sagunto, Modal_2026_Almeria, Paginacion_2025_Paris, RRSS_2025_Pisa, SEO_Head_Section, SEO_Schema_Page, Separador_2025_Reinosa, Separador_2025_Toledo, Share_2025_Florencia, SpectrumSeparator, Sumario_2025_Beijing, Tabla_2025_Fuenlabrada, Tabla_2026_Cadiz, Tag_2025_Bolonia, TestHijo, TestPadre, Test_2026_Gaza, TextBox, TextImageBackground, TextImageBlock, TextImageCard, TextImageHeader, Texto_2025_Kyoto, Texto_2026_Alicante, Texto_2026_Castellon, Tiempo_2025_Londres, Titulo_2025_Algeciras, Titulo_2025_Santorini, VideoAutoplay, Video_2025_Polop, Video_2025_Valencia, Video_2026_Andujar, ReactButton };
|
|
103
104
|
|
|
104
105
|
|
|
105
106
|
// Exporta la función listComponents para que sea usado en el Pagebuilder en Vue.
|
|
@@ -134,6 +135,7 @@ export const components = {
|
|
|
134
135
|
Contenido_2026_Denia: Contenido_2026_Denia,
|
|
135
136
|
Contenido_2026_Dubai: Contenido_2026_Dubai,
|
|
136
137
|
Contenido_2026_Estocolmo: Contenido_2026_Estocolmo,
|
|
138
|
+
Contenido_2026_Huesca: Contenido_2026_Huesca,
|
|
137
139
|
Contenido_2026_Jaen: Contenido_2026_Jaen,
|
|
138
140
|
Contenido_2026_Leon: Contenido_2026_Leon,
|
|
139
141
|
Contenido_2026_Mallorca: Contenido_2026_Mallorca,
|