@grupo-elo-editorial/shared-ui-react 1.2.2 → 1.2.4

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
@@ -4,6 +4,18 @@ Format: [Keep a Changelog](https://keepachangelog.com/en/1.1.0/) · Versioning:
4
4
 
5
5
  ---
6
6
 
7
+ ## [1.2.3] — 2026-05-25 (HeroCarousel — overlay de texto configurável por slide)
8
+
9
+ ### Added
10
+
11
+ - **`HeroSlide.showOverlay`** (`boolean`, default `false`): quando `true`, renderiza um overlay gradiente sobre a imagem com `title`, `description` e `cta` do slide. Permite que banners com imagem neutra exibam texto dinâmico; banners com artwork que já contém o texto continuam com `showOverlay: false` (comportamento padrão inalterado).
12
+
13
+ ### Changed
14
+
15
+ - `package.json` `version` bumped `1.2.2 → 1.2.3`.
16
+
17
+ ---
18
+
7
19
  ## [1.2.2] — 2026-05-25 (HeroCarousel — remove text overlay)
8
20
 
9
21
  ### Fixed
@@ -6,6 +6,8 @@ export interface HeroSlide {
6
6
  imageMobile: string;
7
7
  imageTablet: string;
8
8
  imageDesktop: string;
9
+ /** Exibe título, descrição e CTA sobrepostos na imagem. Default false. */
10
+ showOverlay?: boolean;
9
11
  cta?: {
10
12
  label: string;
11
13
  href: string;