imbric-theme 0.8.1 → 0.8.2

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.
@@ -60,7 +60,7 @@ Icon.defaultProps = {
60
60
  color: 'base',
61
61
  background: 'transparent',
62
62
  isClickable: false,
63
- getStyles: () => {},
63
+ getStyles: () => { },
64
64
  }
65
65
 
66
66
  export default withStyles(styles)(Icon)
@@ -8,8 +8,6 @@ import { useRouter } from 'next/router'
8
8
  import styles from './Sidebar.module.css'
9
9
 
10
10
  import Picture from '../../atoms/Picture'
11
- import Icon from '../../atoms/Icon'
12
- import Divider from '../../atoms/Divider'
13
11
  import ItemMenu from '../../molecules/ItemMenu/ItemMenu'
14
12
 
15
13
  export const Sidebar = ({ getStyles, menuCollapseView, options, isHrefLogo, isSrcLogoS, isSrcLogo }) => {
@@ -259,7 +259,7 @@ export const CardServiceDetail = ({
259
259
 
260
260
  <div className={getStyles('card-content')}>
261
261
 
262
- <div className={getStyles('card-subcontent')}>
262
+ {/* <div className={getStyles('card-subcontent')}>
263
263
 
264
264
  <Label >
265
265
  <Icon
@@ -273,7 +273,7 @@ export const CardServiceDetail = ({
273
273
 
274
274
  <p className={getStyles('card-content-p')}>{txtNumberDriverService}</p>
275
275
 
276
- </div>
276
+ </div> */}
277
277
 
278
278
  <div className={getStyles('card-subcontent')}>
279
279
 
@@ -35,7 +35,7 @@ export const ItemMenu = ({ children, getStyles, size, icon, color, background, s
35
35
  <Icon
36
36
  size={size}
37
37
  name={icon}
38
- color={ itemActive ? 'primary' : color}
38
+ color={itemActive ? 'primary' : color}
39
39
  background={background}
40
40
  onClick={function noRefCheck() { }}
41
41
  />
@@ -66,7 +66,7 @@ export const ItemMenu = ({ children, getStyles, size, icon, color, background, s
66
66
  <Icon
67
67
  size={size}
68
68
  name={icon}
69
- color={ itemActive ? 'primary' : color}
69
+ color={itemActive ? 'primary' : color}
70
70
  background={background}
71
71
  onClick={function noRefCheck() { }}
72
72
  />
@@ -88,13 +88,13 @@ export const ItemMenu = ({ children, getStyles, size, icon, color, background, s
88
88
 
89
89
  {itemSubmenu.map((item, index) => (
90
90
  item.view ?
91
- <Link key={index} href={item.href} passHref>
92
- <li className={getStyles('pro-menu-item', { 'activesub': item.active })}>
93
- <div className={getStyles('pro-inner-item')} role="button">
94
- <span className={getStyles('pro-item-content')}>{item.text}</span></div>
95
- </li>
96
- </Link>
97
- : null
91
+ <Link key={index} href={item.href} passHref>
92
+ <li className={getStyles('pro-menu-item', { 'activesub': item.active })}>
93
+ <div className={getStyles('pro-inner-item')} role="button">
94
+ <span className={getStyles('pro-item-content')}>{item.text}</span></div>
95
+ </li>
96
+ </Link>
97
+ : null
98
98
  ))}
99
99
  </ul>
100
100
  </div>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "imbric-theme",
3
- "version": "0.8.1",
3
+ "version": "0.8.2",
4
4
  "description": "Components library IMBRIC",
5
5
  "private": false,
6
6
  "main": "index.js",