plataforma-fundacao-componentes 3.0.0-beta.2 → 3.0.0-beta.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/footerSicredi/assets/logoHandTalk.d.ts +1 -0
- package/dist/components/footerSicredi/assets/logoWhatsApp.d.ts +1 -0
- package/dist/components/footerSicredi/assets/qrAtendimentoLibras.d.ts +1 -0
- package/dist/components/footerSicredi/assets/qrAtendimentoPt.d.ts +1 -0
- package/dist/components/footerSicredi/footerSicredi.constants.d.ts +34 -0
- package/dist/components/footerSicredi/footerSicredi.d.ts +4 -0
- package/dist/components/formattedText/formattedText.d.ts +0 -1
- package/dist/index.d.ts +2 -1
- package/dist/index.js +3583 -3139
- package/dist/index.umd.cjs +24 -24
- package/dist/style.css +1 -1
- package/package.json +1 -1
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export default function LogoHandTalk(): import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export default function LogoWhatsapp(): import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export default function QrAtendimentoLibras(): import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export default function QrAtendimentoPt(): import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
export declare const footerLinks: {
|
|
2
|
+
title: string;
|
|
3
|
+
content: {
|
|
4
|
+
label: string;
|
|
5
|
+
link: string;
|
|
6
|
+
}[];
|
|
7
|
+
}[];
|
|
8
|
+
export declare const footerWhatsApp: {
|
|
9
|
+
title: string;
|
|
10
|
+
num: {
|
|
11
|
+
label: string;
|
|
12
|
+
link: string;
|
|
13
|
+
};
|
|
14
|
+
label: string;
|
|
15
|
+
portuguese: {
|
|
16
|
+
label: string;
|
|
17
|
+
link: string;
|
|
18
|
+
};
|
|
19
|
+
libras: {
|
|
20
|
+
label: string;
|
|
21
|
+
link: string;
|
|
22
|
+
};
|
|
23
|
+
};
|
|
24
|
+
export declare const footerNumbers: {
|
|
25
|
+
title: string;
|
|
26
|
+
sub: string;
|
|
27
|
+
label: string;
|
|
28
|
+
link: string;
|
|
29
|
+
}[];
|
|
30
|
+
export declare const footerSocial: {
|
|
31
|
+
label: string;
|
|
32
|
+
link: string;
|
|
33
|
+
}[];
|
|
34
|
+
export declare const footerInformation: string[];
|
package/dist/index.d.ts
CHANGED
|
@@ -4,6 +4,7 @@ import Col from './components/col/col';
|
|
|
4
4
|
import Collapse from './components/collapse/collapse';
|
|
5
5
|
import Container from './components/container/container';
|
|
6
6
|
import Dropdown from './components/dropdown/dropdown';
|
|
7
|
+
import FooterSicredi from './components/footerSicredi/footerSicredi';
|
|
7
8
|
import FormattedText from './components/formattedText/formattedText';
|
|
8
9
|
import FullHeightContainer from './components/fullHeightContainer/fullHeightContainer';
|
|
9
10
|
import Header, { UserLoginButton, VerticalSeparator } from './components/header/header';
|
|
@@ -16,6 +17,6 @@ import useEvent from './hooks/useEvent/useEvent';
|
|
|
16
17
|
import useFloatingPanel from './hooks/useFloatingPanel/useFloatingPanel';
|
|
17
18
|
import useOutsideClick from './hooks/useOutsideClick/useOutsideClick';
|
|
18
19
|
import useScreenSize from './hooks/useScreenSize/useScreenSize';
|
|
19
|
-
export { Banner, Button, Col, Collapse, Container, Dropdown, FormattedText, FullHeightContainer, Header, IconButton, Row, Toast, ToastContainer, Typography, UserLoginButton, VerticalSeparator, };
|
|
20
|
+
export { Banner, Button, Col, Collapse, Container, Dropdown, FormattedText, FullHeightContainer, Header, IconButton, Row, Toast, ToastContainer, Typography, UserLoginButton, VerticalSeparator, FooterSicredi, };
|
|
20
21
|
export { useDropOpened, useEvent, useFloatingPanel, useOutsideClick, useScreenSize, };
|
|
21
22
|
export * from './libraries';
|