@grupo-elo-editorial/shared-ui-react 1.3.0 → 1.3.2

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,15 @@ Format: [Keep a Changelog](https://keepachangelog.com/en/1.1.0/) · Versioning:
4
4
 
5
5
  ---
6
6
 
7
+ ## [1.3.1] — 2026-06-02 (HeroCarousel — dots pagination visualmente corretos)
8
+
9
+ ### Fixed
10
+
11
+ - **`HeroCarousel`**: dots de pagination corrigidos — o `min-h-[24px]` do touch target sobrescrevia `h-1.5` tornando os dots visualmente grandes (44×24 px de fundo). Separado o touch target (button transparente `min-w-11 min-h-6 group`) do visual (inner `<span>`) para que o fundo colorido tenha exatamente `h-1 w-1` (inativo) ou `h-1 w-3` (ativo). Cores: `bg-white/40` inativo → `bg-white/60` no `group-hover`; `bg-white` ativo. Gap: `gap-2` → `gap-1.5`. Touch targets e `focus-visible:ring` preservados (WCAG 2.5.5 / 1.4.11).
12
+ - `package.json` `version` bumped `1.3.0 → 1.3.1`.
13
+
14
+ ---
15
+
7
16
  ## [1.3.0] — 2026-06-02 (HeroCarousel — polish visual nos controles de navegação)
8
17
 
9
18
  ### Changed
@@ -4,9 +4,13 @@ export interface FooterProps extends HTMLAttributes<HTMLElement> {
4
4
  onNewsletterSubmit?: (email: string) => void;
5
5
  /** Substitui o bloco de newsletter por conteúdo customizado. Quando omitido, exibe o NewsletterForm padrão. */
6
6
  newsletterSlot?: React.ReactNode;
7
+ /** URL da loja Google Play para download do app */
8
+ playStoreUrl?: string;
9
+ /** URL da App Store para download do app */
10
+ appStoreUrl?: string;
7
11
  }
8
12
  declare const Footer: {
9
- ({ brand, onNewsletterSubmit, newsletterSlot, className, ...props }: FooterProps): import("react/jsx-runtime").JSX.Element;
13
+ ({ brand, onNewsletterSubmit, newsletterSlot, playStoreUrl, appStoreUrl, className, ...props }: FooterProps): import("react/jsx-runtime").JSX.Element;
10
14
  displayName: string;
11
15
  };
12
16
  export { Footer };