@bitrise/bitkit 13.52.0 → 13.54.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,7 +1,7 @@
1
1
  {
2
2
  "name": "@bitrise/bitkit",
3
3
  "description": "Bitrise React component library",
4
- "version": "13.52.0",
4
+ "version": "13.54.0",
5
5
  "repository": {
6
6
  "type": "git",
7
7
  "url": "git+ssh://git@github.com/bitrise-io/bitkit.git"
@@ -111,6 +111,7 @@ const RealStage = ({
111
111
  }
112
112
  if (isSkipped) {
113
113
  iconName = 'StepstatusSkip';
114
+ iconColor = 'icon.disabled';
114
115
  textColor = 'text.disabled';
115
116
  }
116
117
  const style = useMultiStyleConfig('ProgressIndicator', { variant });
@@ -1,4 +1,4 @@
1
- import { MouseEvent, useEffect } from 'react';
1
+ import { MouseEvent } from 'react';
2
2
  import { Button, forwardRef, TabProps as ChakraTabProps, useTab, useTabsStyles } from '@chakra-ui/react';
3
3
  import { TypeColors } from '../../types/bitkit';
4
4
  import Box from '../Box/Box';
@@ -31,12 +31,6 @@ const ContainedTab = forwardRef<ContainedTabProps, 'button'>((props, ref) => {
31
31
  ...rest,
32
32
  });
33
33
 
34
- useEffect(() => {
35
- if (tabProps['aria-selected']) {
36
- document.getElementById(tabProps.id)?.scrollIntoView({ behavior: 'smooth', inline: 'center' });
37
- }
38
- }, [tabProps]);
39
-
40
34
  return (
41
35
  <Button
42
36
  as={href ? 'a' : 'button'}