@loomhq/lens 10.77.1 → 10.77.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.
@@ -101,7 +101,7 @@ const ButtonWrapper = styled.button `
101
101
  vertical-align: middle;
102
102
  white-space: nowrap;
103
103
  border: 1px solid;
104
- ${getFontWeight('medium')};
104
+ ${getFontWeight('bold')};
105
105
  ${getRadius('full')};
106
106
  ${props => props.hasFullWidth ? 'display: flex; width: 100%' : 'display: inline-flex'};
107
107
  height: ${props => sizesStyles[props.size].height};
@@ -25,7 +25,7 @@ const PillWrapper = styled.div `
25
25
  background-color: ${props => getColorValue(props.backgroundColor)};
26
26
  ${getRadius('full')};
27
27
  ${getTextSize('small')};
28
- ${getFontWeight('medium')};
28
+ ${getFontWeight('bold')};
29
29
  ${getSize('gap', 'xsmall')};
30
30
  `;
31
31
  const Pill = (_a) => {
@@ -63,7 +63,7 @@ const TabWrapper = styled.button `
63
63
  color: inherit;
64
64
  text-decoration: none;
65
65
  flex-shrink: 0;
66
- ${getFontWeight('medium')};
66
+ ${getFontWeight('bold')};
67
67
  transition: 0.6s color;
68
68
  white-space: nowrap;
69
69
  color: ${props => getColorValue(props.isActive ? 'body' : 'bodyDimmed')};
@@ -41,7 +41,7 @@ const TextButtonWrapper = styled.button `
41
41
  cursor: pointer;
42
42
  transition: 0.6s background-color;
43
43
  color: ${getColorValue('body')};
44
- ${getFontWeight('medium')};
44
+ ${getFontWeight('bold')};
45
45
  ${getRadius('full')};
46
46
  ${props => getTextSize(sizeStyles[props.size].textSize)};
47
47
  padding: 0 ${props => sizeStyles[props.size].xSpace};
@@ -38,7 +38,7 @@ const TooltipBoxWrapper = styled.div `
38
38
  background-color: ${getColorValue('background')};
39
39
  color: ${getColorValue('body')};
40
40
  ${getRadius('large')};
41
- ${getFontWeight('medium')};
41
+ ${getFontWeight('bold')};
42
42
  ${getTextSize('small')};
43
43
  ${getShadow('medium')};
44
44
  ${props => getSize('max-width', props.maxWidth)};
@@ -50,7 +50,7 @@ const ShortcutWrapper = styled.div `
50
50
  background-color: ${getColorValue('backgroundActive')};
51
51
  border-radius: 3px;
52
52
  color: ${getColorValue('grey3')};
53
- ${getFontWeight('medium')};
53
+ ${getFontWeight('bold')};
54
54
  ${getTextSize('small')};
55
55
  padding-left: ${u(0.5)};
56
56
  padding-right: ${u(0.5)};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@loomhq/lens",
3
- "version": "10.77.1",
3
+ "version": "10.77.2",
4
4
  "scripts": {
5
5
  "dev": "next",
6
6
  "build:next": "next build",