wca-designsystem 1.0.49 → 1.0.51

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
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "1.0.49",
2
+ "version": "1.0.51",
3
3
  "license": "MIT",
4
4
  "main": "dist/index.js",
5
5
  "typings": "dist/index.d.ts",
@@ -1,31 +1,31 @@
1
- import React from 'react';
2
- import { Container } from '@mantine/core';
3
- import * as S from './styles';
4
- import Navbar from '../Navbar';
5
- import Cabecalho from '../Cabecalho';
6
- import { NotificationsProps } from '../../atomos/UsuarioNotification';
7
- import { LinksProps } from '../../molecules/GrupoDeLinks';
8
- import { theme } from '../../../styles/theme';
1
+ import React from 'react'
2
+ import { Container } from '@mantine/core'
3
+ import * as S from './styles'
4
+ import Navbar from '../Navbar'
5
+ import Cabecalho from '../Cabecalho'
6
+ import { NotificationsProps } from '../../atomos/UsuarioNotification'
7
+ import { LinksProps } from '../../molecules/GrupoDeLinks'
8
+ import { theme } from '../../../styles/theme'
9
9
 
10
10
  type ConchaAplicacaolType = {
11
- children: React.ReactNode;
12
- notificacoes: NotificationsProps;
13
- links?: LinksProps[];
14
- modulo: string;
15
- isNavHover: boolean;
16
- navbarRef?: React.RefObject<HTMLDivElement>;
17
- temNotificacoes?: boolean;
18
- temChatBot?: boolean;
19
- openChatBot?: () => void;
20
- sairFunc: () => void;
21
- activeLink: string;
22
- color?: string;
23
- icone: string;
24
- titulo: string;
25
- subTitulo: string;
26
- info: string;
27
- onTrocarModulos?: () => void;
28
- };
11
+ children: React.ReactNode
12
+ notificacoes: NotificationsProps
13
+ links?: LinksProps[]
14
+ modulo: string
15
+ isNavHover: boolean
16
+ navbarRef?: React.RefObject<HTMLDivElement>
17
+ temNotificacoes?: boolean
18
+ temChatBot?: boolean
19
+ openChatBot?: () => void
20
+ sairFunc: () => void
21
+ activeLink: string
22
+ color?: string
23
+ icone: string
24
+ titulo: string
25
+ subTitulo: string
26
+ info: string
27
+ onTrocarModulos?: () => void
28
+ }
29
29
  export function ConchaAplicacao({
30
30
  children,
31
31
  modulo,
@@ -85,5 +85,5 @@ export function ConchaAplicacao({
85
85
  </Container>
86
86
  </S.ConchaAplicacaoMainWrapper>
87
87
  </S.ConchaAplicacaoWrapper>
88
- );
88
+ )
89
89
  }
@@ -27,7 +27,5 @@ export const NavbarWrapper = styled(AppShell.Navbar)<ConchaAplicacaoProps>`
27
27
  `}
28
28
  `
29
29
  export const ConchaAplicacaoMainWrapper = styled(AppShell.Main)`
30
- ${() => css`
31
- height: 100dvh;
32
- `}
30
+ ${() => css``}
33
31
  `