libreria-astro-lefebvre 0.1.24 → 0.1.26
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 +1 -1
- package/src/carbins/Formulario_2025_Seul.ts +1 -1
- package/src/carbins/Formulario_2025_Teruel.ts +1 -1
- package/src/carbins/Formulario_2026_Carabanchel.ts +1 -1
- package/src/carbins/Formulario_2026_Wichita.ts +1 -1
- package/src/components/Astro/Formulario_2026_Wichita.astro +2 -2
- package/src/components/Astro/Galeria_2026_Segorbe.astro +1 -1
package/package.json
CHANGED
|
@@ -39,7 +39,7 @@ export const metadata: ComponentMetadata = {
|
|
|
39
39
|
help: 'Nombre EXACTO del formulario tal como está dado de alta en LF2 (incluye normalmente un código numérico + nombre). Este valor se pasa a apiManager.pintarFormularioAutogestionado() para cargar el formulario correcto. Si es erróneo, el formulario no se renderizará',
|
|
40
40
|
label: 'Nombre del formulario en LF2',
|
|
41
41
|
mandatory: false,
|
|
42
|
-
example_value: '
|
|
42
|
+
example_value: ''
|
|
43
43
|
},
|
|
44
44
|
{
|
|
45
45
|
name: 'businessAction',
|
|
@@ -143,7 +143,7 @@ export const metadata: ComponentMetadata = {
|
|
|
143
143
|
help: 'Nombre EXACTO del formulario tal como está dado de alta en LF2. Se pasa a apiManager.pintarFormularioAutogestionado() para cargar el formulario correcto dentro del popup. Si es erróneo, el formulario no se renderizará',
|
|
144
144
|
label: 'Nombre del formulario en LF2',
|
|
145
145
|
mandatory: false,
|
|
146
|
-
example_value: '
|
|
146
|
+
example_value: ''
|
|
147
147
|
}
|
|
148
148
|
]
|
|
149
149
|
};
|
|
@@ -39,7 +39,7 @@ export const metadata: ComponentMetadata = {
|
|
|
39
39
|
help: 'Nombre EXACTO del formulario tal como está dado de alta en LF2 (incluye normalmente un código numérico + nombre). Este valor se pasa a apiManager.pintarFormularioAutogestionado() para cargar el formulario correcto. Si es erróneo, el formulario no se renderizará',
|
|
40
40
|
label: 'Título del formulario en LF2',
|
|
41
41
|
mandatory: false,
|
|
42
|
-
example_value: '
|
|
42
|
+
example_value: ''
|
|
43
43
|
},
|
|
44
44
|
{
|
|
45
45
|
name: 'businessAction',
|
|
@@ -43,12 +43,12 @@ const structuredData = `<script type="application/ld+json">
|
|
|
43
43
|
<article class="flex flex-col items-center justify-center">
|
|
44
44
|
<div class={`flex-col md:flex ${orientation === 'left' ? 'flex-row' : 'flex-row-reverse'} w-full items-start gap-4 justify-center`}>
|
|
45
45
|
<div class="w-full md:w-1/3 flex justify-start mt-12 mb-8 flex-col">
|
|
46
|
-
<h2 class="font-poppins text-[#262626] text-[32px] text-left leading-10 mb-4 text-wrap">{title}</h2>
|
|
46
|
+
<h2 class="font-poppins text-[#262626] text-[32px] font-medium text-left leading-10 mb-4 text-wrap">{title}</h2>
|
|
47
47
|
<p class="font-poppins text-[#262626] text-[32px] font-semibold text-left leading-10 mb-4 text-wrap">{subTitle}</p>
|
|
48
48
|
<p class="text-[#363942] font-semibold font-inter text-base mb-4">{description}</p>
|
|
49
49
|
<div class="text-sm font-inter" set:html={mainContent}></div>
|
|
50
50
|
</div>
|
|
51
|
-
<div class={`w-full md:w-1/2 p-0 md:p-4 flex items-center ${orientation === 'left' ? 'justify-end' : 'justify-start'}`}>
|
|
51
|
+
<div class={`w-full md:w-1/2 mt-8 p-0 md:p-4 flex items-center ${orientation === 'left' ? 'justify-end' : 'justify-start'}`}>
|
|
52
52
|
<div class="flex w-full md:w-[500px] flex-col items-start gap-6 p-8 rounded-2xl border border-[#B6B7BB] bg-white shadow-[0_8px_8px_-4px_rgba(0,0,0,0.04),0_20px_24px_-4px_rgba(0,0,0,0.08)]">
|
|
53
53
|
{forceSkeleton ? (
|
|
54
54
|
<div class="w-full flex flex-col mx-auto gap-6 animate-pulse">
|
|
@@ -47,7 +47,7 @@ const structuredData = `<script type="application/ld+json">
|
|
|
47
47
|
src={extractImageUrl(item.image)}
|
|
48
48
|
alt={item.alt || 'Imagen de la galería'}
|
|
49
49
|
loading="lazy"
|
|
50
|
-
class="w-full h-auto rounded-xl transition
|
|
50
|
+
class="w-full h-auto rounded-xl transition duration-300 ease-in-out hover:shadow-sm hover:scale-[1.02]"
|
|
51
51
|
/>
|
|
52
52
|
</figure>
|
|
53
53
|
))}
|