@apify/ui-library 1.101.1 → 1.102.0

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,6 +1,6 @@
1
1
  {
2
2
  "name": "@apify/ui-library",
3
- "version": "1.101.1",
3
+ "version": "1.102.0",
4
4
  "description": "React UI library used by apify.com",
5
5
  "license": "Apache-2.0",
6
6
  "type": "module",
@@ -64,5 +64,5 @@
64
64
  "src",
65
65
  "style"
66
66
  ],
67
- "gitHead": "22ac16994fd08d7318fca1066b88847c300729ee"
67
+ "gitHead": "3cf74e03e4b8178641017fc0a607e217b7ca3455"
68
68
  }
@@ -130,7 +130,7 @@ const tabVariantStyle = {
130
130
  }
131
131
 
132
132
  &.active {
133
- background-color: transparent;
133
+ background-color: ${theme.color.neutral.background};
134
134
  border-color: ${theme.color.neutral.border};
135
135
  color: ${theme.color.neutral.text};
136
136
  }
@@ -157,7 +157,7 @@ const TabWrapper = styled(Link)<TabWrapperProps>`
157
157
  transition: background-color ${theme.transition.fastEaseOut}, border-color ${theme.transition.fastEaseOut}, color ${theme.transition.fastEaseOut};
158
158
  z-index: 1;
159
159
 
160
-
160
+
161
161
  ${({ $variant }) => tabVariantStyle[$variant]};
162
162
 
163
163
  &.disabled {