@bytebrand/fe-ui-core 4.1.221 → 4.1.223
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 +1 -1
- package/source/components/SearchWidgetsMobile/StateWidget/StateWidget.styl +1 -1
- package/source/components/SearchWidgetsMobile/StateWidget/StateWidget.tsx +1 -1
- package/source/components/_common/MaterialTooltip/MaterialTooltip.styled.tsx +3 -3
- package/source/components/_common/MaterialTooltip/MaterialTooltip.tsx +4 -2
package/package.json
CHANGED
|
@@ -86,7 +86,7 @@ const StateWidget = (props: IStateWidgetProps) => {
|
|
|
86
86
|
{t(`cbd:${option}`)}
|
|
87
87
|
</span>
|
|
88
88
|
<span className={styles.labelSub}> (<FormattedNumber numbersAfterDot={0} value={agg} />)</span>
|
|
89
|
-
{index === 0 && <IconSVG className={styles.infoIcon} name={'
|
|
89
|
+
{index === 0 && <IconSVG className={styles.infoIcon} name={'infoIcon'} customDimensions />}
|
|
90
90
|
</div>
|
|
91
91
|
);
|
|
92
92
|
};
|
|
@@ -2,7 +2,7 @@ import { styled } from '@mui/system';
|
|
|
2
2
|
import IconSVG from '../IconSVG/IconSVG';
|
|
3
3
|
|
|
4
4
|
export const IconSvgWrapper = styled(IconSVG)(props => ({
|
|
5
|
-
fill: props.disabled ? '#4C4E6442' : '#4C4E648A'
|
|
6
|
-
|
|
7
|
-
|
|
5
|
+
fill: props.disabled ? '#4C4E6442' : '#4C4E648A',
|
|
6
|
+
width: '10px',
|
|
7
|
+
height: '10px'
|
|
8
8
|
}));
|
|
@@ -18,9 +18,11 @@ const LightTooltip = styled(({ className, ...props }: TooltipProps) => (
|
|
|
18
18
|
zIndex: 10000,
|
|
19
19
|
[`& .${tooltipClasses.tooltip}`]: {
|
|
20
20
|
backgroundColor: theme.palette.common.white,
|
|
21
|
-
color: '
|
|
21
|
+
color: '#4C4E64AD',
|
|
22
22
|
border: '1px solid rgb(60 60 60 / 22%)',
|
|
23
|
-
fontSize:
|
|
23
|
+
fontSize: 10,
|
|
24
|
+
padding: '4px 8px',
|
|
25
|
+
maxWidth: '149px',
|
|
24
26
|
borderRadius: 6,
|
|
25
27
|
background: '#FFFFFF',
|
|
26
28
|
boxShadow: '0px 0px 1px -2px rgba(76, 78, 100, 0.2), 0px 0px 2px rgba(76, 78, 100, 0.14), 0px 0px 5px rgba(76, 78, 100, 0.12)'
|