libreria-astro-lefebvre 0.1.51 → 0.1.53

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "libreria-astro-lefebvre",
3
- "version": "0.1.51",
3
+ "version": "0.1.53",
4
4
  "description": "Librería de componentes Astro, React y Vue para Lefebvre",
5
5
  "author": "Equipo web desarrollo Lefebvre",
6
6
  "type": "module",
@@ -12,7 +12,7 @@ export const metadata: ComponentMetadata = {
12
12
  {
13
13
  name: 'title',
14
14
  type: 'text',
15
- help: 'Título del formulario (h2). Si se deja vacío, por defecto muestra "Suscríbete ahora". No admite HTML',
15
+ help: 'Título del formulario (h2). Si se deja vacío, por defecto muestra "Mantente al día de la IA jurídica". No admite HTML',
16
16
  label: 'Texto del título',
17
17
  mandatory: false,
18
18
  example_value: 'Suscríbete al blog de GenIA-L'
@@ -20,7 +20,7 @@ export const metadata: ComponentMetadata = {
20
20
  {
21
21
  name: 'description',
22
22
  type: 'text',
23
- help: 'Descripción que aparece debajo del título. Si se deja vacía, por defecto muestra "Recibe novedades de artículos que se publican en el blog". No admite HTML',
23
+ help: 'Descripción que aparece debajo del título. Si se deja vacía, por defecto muestra "Recibe en tu email los últimos artículos, tendencias, casos de uso y novedades sobre inteligencia artificial aplicada al sector legal.". No admite HTML',
24
24
  label: 'Texto de la descripción',
25
25
  mandatory: false,
26
26
  example_value: 'Recibe mensualmente los últimos artículos sobre legaltech, IA jurídica y transformación digital en el sector legal'
@@ -36,7 +36,7 @@ export const metadata: ComponentMetadata = {
36
36
  {
37
37
  name: 'buttonText',
38
38
  type: 'text',
39
- help: 'Texto del botón de envío. Por defecto "Suscríbete". También se usa como aria-label del botón',
39
+ help: 'Texto del botón de envío. Por defecto "Quiero recibir las novedades". También se usa como aria-label del botón',
40
40
  label: 'Texto del botón',
41
41
  mandatory: false,
42
42
  example_value: 'Suscríbete'
@@ -1,8 +1,8 @@
1
1
  ---
2
2
 
3
3
  const {
4
- title = "Suscríbete ahora",
5
- description = "Recibe novedades de artículos que se publican en el blog",
4
+ title = "Mantente al día de la IA jurídica",
5
+ description = "Recibe en tu email los últimos artículos, tendencias, casos de uso y novedades sobre inteligencia artificial aplicada al sector legal.",
6
6
  lf2FormTitle = "",
7
7
  businessAction = false,
8
8
  subdirectory = '',
@@ -45,7 +45,7 @@ const uid = 'almeria-' + Math.random().toString(36).substring(2, 11);
45
45
  )}
46
46
 
47
47
  <div id={`modal-${uid}`} class="fixed w-full h-full pt-12 top-0 left-0 z-9999 hidden bg-gray-100/60 backdrop-blur-sm flex items-center justify-center">
48
- <div class="flex flex-col w-full md:w-4/5 max-w-[1000px] max-h-[calc(100vh-96px)] m-auto p-4 rounded-2xl bg-white shadow-lg border border-[#B6B7BB] overflow-y-auto modal-guia">
48
+ <div class="flex flex-col w-full md:w-4/5 max-w-[500px] max-h-[calc(100vh-96px)] m-auto p-4 rounded-2xl bg-white shadow-lg border border-[#B6B7BB] overflow-y-auto modal-guia">
49
49
  <div class="w-full flex justify-end">
50
50
  <button id={`js-close-${uid}`} aria-label="Cerrar" class="js-close-popup w-auto transition-transform hover:scale-125 cursor-pointer">X</button>
51
51
  </div>
@@ -57,10 +57,10 @@ const uid = 'almeria-' + Math.random().toString(36).substring(2, 11);
57
57
  )}
58
58
  <div class={imageModalUrl ? "w-full lg:w-2/3" : "w-full"}>
59
59
  {titleModal && (
60
- <p class="font-poppins text-[#262626] text-[28px] lg:text-[32px] font-normal text-left leading-10 mb-8">{titleModal}</p>
60
+ <p class="font-poppins text-[#262626] text-[28px] lg:text-[32px] font-normal text-left leading-10 mb-5 titleModalClass">{titleModal}</p>
61
61
  )}
62
62
  {descriptionModal && (
63
- <div class="font-inter text-base font-normal leading-6 mb-8" set:html={descriptionModal} />
63
+ <div class="font-poppins text-[#363942] text-xl font-normal leading-7 mb-5 descriptionModalClass" set:html={descriptionModal} />
64
64
  )}
65
65
  <div id={`lf2-form-container-${uid}`} class="w-full flex flex-col mx-auto gap-3">
66
66
  <!--FORMULARIO -->