libreria-astro-lefebvre 0.1.48 → 0.1.49

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.48",
3
+ "version": "0.1.49",
4
4
  "description": "Librería de componentes Astro, React y Vue para Lefebvre",
5
5
  "author": "Equipo web desarrollo Lefebvre",
6
6
  "type": "module",
@@ -68,7 +68,7 @@ export const metadata: ComponentMetadata = {
68
68
  {
69
69
  name: 'titleModal',
70
70
  type: 'text',
71
- help: 'Título del modal (h2). Si se deja vacío no se renderiza. No admite HTML',
71
+ help: 'Título del modal (p con estilos h2). Si se deja vacío no se renderiza. No admite HTML',
72
72
  label: 'Título del modal',
73
73
  mandatory: false,
74
74
  example_value: 'Aprende a utilizar GenIA-L'
@@ -57,7 +57,7 @@ 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
- <h2 class="font-poppins text-[#262626] text-[28px] lg:text-[32px] font-normal text-left leading-10 mb-8">{titleModal}</h2>
60
+ <p class="font-poppins text-[#262626] text-[28px] lg:text-[32px] font-normal text-left leading-10 mb-8">{titleModal}</p>
61
61
  )}
62
62
  {descriptionModal && (
63
63
  <div class="font-inter text-base font-normal leading-6 mb-8" set:html={descriptionModal} />