wca-designsystem 1.0.53 → 1.0.54

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.53",
2
+ "version": "1.0.54",
3
3
  "license": "MIT",
4
4
  "main": "dist/index.js",
5
5
  "typings": "dist/index.d.ts",
@@ -12,7 +12,7 @@ import CiclosEncerrados from '../../../assets/imagens/icons/CiclosEncerrados.svg
12
12
  import Logo from '../../../assets/imagens/novos-icones/STI_nomeCor.svg'
13
13
  import LogoInitial from '../../../assets/imagens/novos-icones/STI_iconeBranco.svg'
14
14
  import { useMemo } from 'react'
15
- import HoverPopUp from '../../atomos/HoverPopUp'
15
+ import { Tooltip } from '@mantine/core'
16
16
 
17
17
  export type NavbarType = {
18
18
  isHover: boolean
@@ -97,14 +97,14 @@ const Navbar = ({
97
97
  style={{ width: isHover ? '280px' : '80px' }}
98
98
  >
99
99
  {temChatBot && (
100
- <HoverPopUp texto={'CHATBOT'}>
100
+ <Tooltip label={'CHATBOT'}>
101
101
  <S.ChatBotAnchor
102
102
  onClick={openChatBot}
103
103
  color={theme.colors.yellowWca}
104
104
  >
105
105
  <Icone fill="#fff" svg={chat} />
106
106
  </S.ChatBotAnchor>
107
- </HoverPopUp>
107
+ </Tooltip>
108
108
  )}
109
109
 
110
110
  <Version