wca-designsystem 1.0.69 → 1.0.70
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
|
@@ -9,7 +9,7 @@ import { theme } from '../../../styles/theme'
|
|
|
9
9
|
|
|
10
10
|
type ConchaAplicacaolType = {
|
|
11
11
|
children: React.ReactNode
|
|
12
|
-
removeTooltip?:boolean
|
|
12
|
+
removeTooltip?: boolean
|
|
13
13
|
notificacoes: NotificationsProps
|
|
14
14
|
links?: LinksProps[]
|
|
15
15
|
modulo: string
|
|
@@ -71,7 +71,7 @@ export function ConchaAplicacao({
|
|
|
71
71
|
onTrocarModulos={onTrocarModulos!}
|
|
72
72
|
/>
|
|
73
73
|
</S.NavbarWrapper>
|
|
74
|
-
|
|
74
|
+
|
|
75
75
|
<S.ConchaAplicacaoMainWrapper>
|
|
76
76
|
<Container size={1500}>
|
|
77
77
|
<Cabecalho
|
|
@@ -84,8 +84,14 @@ export function ConchaAplicacao({
|
|
|
84
84
|
notificacoes={notificacoes}
|
|
85
85
|
removeTooltip={removeTooltip}
|
|
86
86
|
/>
|
|
87
|
+
|
|
87
88
|
{children}
|
|
88
89
|
</Container>
|
|
90
|
+
<S.Footer>
|
|
91
|
+
<p>
|
|
92
|
+
© 2025 WCA Inteligência Comercial — Todos os direitos reservados
|
|
93
|
+
</p>
|
|
94
|
+
</S.Footer>
|
|
89
95
|
</S.ConchaAplicacaoMainWrapper>
|
|
90
96
|
</S.ConchaAplicacaoWrapper>
|
|
91
97
|
)
|
|
@@ -14,6 +14,7 @@ export const ConchaAplicacaoWrapper = styled(AppShell)`
|
|
|
14
14
|
background-color: #eeeeee;
|
|
15
15
|
background-blend-mode: exclusion;
|
|
16
16
|
background-size: contain;
|
|
17
|
+
min-height: 100vh;
|
|
17
18
|
`}
|
|
18
19
|
`
|
|
19
20
|
|
|
@@ -29,3 +30,13 @@ export const NavbarWrapper = styled(AppShell.Navbar)<ConchaAplicacaoProps>`
|
|
|
29
30
|
export const ConchaAplicacaoMainWrapper = styled(AppShell.Main)`
|
|
30
31
|
${() => css``}
|
|
31
32
|
`
|
|
33
|
+
|
|
34
|
+
export const Footer = styled.footer`
|
|
35
|
+
position: absolute;
|
|
36
|
+
bottom: 0;
|
|
37
|
+
width: 100%;
|
|
38
|
+
padding: 1rem;
|
|
39
|
+
text-align: center;
|
|
40
|
+
background: #f5f5f5;
|
|
41
|
+
border-top: 1px solid #ddd;
|
|
42
|
+
`
|
|
@@ -55,8 +55,6 @@ function Passos({
|
|
|
55
55
|
|
|
56
56
|
const passoInfos = passos.filter((passoFilter) => passoFilter.id === passo)[0]
|
|
57
57
|
|
|
58
|
-
console.log(passos)
|
|
59
|
-
|
|
60
58
|
/* const verificaProximoPasso = useCallback((passo: number) => {
|
|
61
59
|
return passos[passo + 1]?.desabilitado === true;
|
|
62
60
|
}, []); */
|