@grupo-elo-editorial/shared-ui-react 1.3.1 → 1.3.3
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/dist/components/prd/Footer.d.ts +5 -1
- package/dist/index.js +518 -461
- package/dist/index.js.map +1 -1
- package/dist/style.css +1 -1
- package/package.json +1 -1
|
@@ -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 };
|